/* #region Global Header */
header {
    margin-top: 35px;
    height: 35px;
    width: 100%;
    z-index: 999;
}

header .logo {
    width: 60px;
    font-weight: 900;
}

header nav {
    font-size: 24px;
}

/* #endregion */


/* #region Global Hero*/
.hero {
    height: calc(40vh - 70px);
    margin-bottom: 10vh;
}

.hero .container {
    height: 100%;
}

.hero h1 {
    font-weight: 800;
    font-size: 94px;
    letter-spacing: -6px;
    text-align: center;

}

.hero p {
    font-size: 20px;
    font-weight: 900;
    margin-top: 5px;
}

.hero p span {
    background: linear-gradient(90deg, #ffde59, #ff914d);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

.hero input {
    padding: 10px 100px;
    font-size: 18px;
    border: 1px solid #ff914d;
    border-radius: 50px;
    color: var(--color-text-primary);
    outline: none;
    transition: all 0.3s ease;
    text-align: center;
}

.hero input::placeholder {
    color: rgba(228, 228, 231, 0.7);
}

.hero input:focus {
    border-color: #f17427;
    box-shadow: 0 0 10px #f17427;
}

/* #endregion */


/* #region Blog Posts */
.blog-posts {
    padding: 50px 0;
    background-color: var(--color-bg);
}

.blog-posts .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.blog-posts h2 {
    font-size: 26px;
    font-weight: 800;
    text-align: center;
    color: white;
    margin-bottom: 40px;
}

.posts {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.post {
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 30px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    justify-content: space-between;
}

.post h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 10px;
    color: white;
}

.post p {
    font-size: 16px;
    line-height: 1.6;
    color: rgb(180, 180, 180);
}

.post-content {
    flex: 1;
}

.post-meta {
    display: flex;
    flex-direction: column;
    text-align: right;
    margin-left: 20px;
    justify-content: end;
}

.post-meta small {
    font-size: 12px;
    color: rgb(180, 180, 180);
    display: block;
}

/* #endregion */
