/* Header Section */
.hero-section {
    padding: 200px 24px 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 55px;
    overflow: hidden;
}

.hero-content-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
}

.hero-text-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    text-align: center;
}

.hero-title {
    font-size: 60px;
    font-weight: 700;
    line-height: 80.96px;
    text-align: center;
    display: block;
}

.hero-title-blue {
    color: var(--color-primary);
}

.hero-title-orange {
    color: var(--color-secondary);
}

.hero-title-gray {
    color: var(--color-text-light);
}

.hero-description {
    width: 664px;
    font-size: 18px;
    font-weight: 400;
    line-height: 26px;
    color: var(--color-text-secondary);
    text-align: center;
    word-wrap: break-word;
}

.hero-image {
    max-width: 1392px;
    width: 100%;
    height: auto;
}

@media (max-width: 1024px) {
    .hero-section {
        padding: 150px 24px 12px;
        gap: 32px;
    }

    .hero-content-container {
        gap: 24px;
    }

    .hero-text-container {
        gap: 12px;
    }

    .hero-title {
        font-size: 50px;
        line-height: 60px;
    }

    .hero-description {
        width: 100%;
        font-size: 16px;
        line-height: 24px;
    }

    .hero-image {
        max-width: 100%;
        height: auto;
    }
}

@media (max-width: 480px) {
    .hero-section {
        padding: 100px 20px 12px;
    }

    .hero-title {
        font-size: 40px;
        line-height: 48px;
    }

    .hero-description {
        font-size: 14px;
        line-height: 20px;
    }
}


/* Section start 1 */
.wpcf7-spinner{
    display: none !important;
}
.wpcf7-response-output{
    display: none;
}

/* Blog sections */
.blog-archive {
    background-color: var(--white);
    padding: 32px 0 80px 0
}

.posts-container {
    justify-content: space-between;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 32px;
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 60px;
}

.post-item {
    width: 100%;
    overflow: hidden;
}

.post-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    border: 1px solid var(--color-border-gray);
}

.post-content {
    padding-top: 16px;
}

.post-category {
    display: block;
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    color: var(--color-text-secondary);
    margin-bottom: 16px;
    text-transform: uppercase;
}

.post-content h3 {
    color: var(--color-text);
    font-size: 20px;
    margin-bottom: 16px;
    font-style: normal;
    font-weight: 700;
}

.post-content p {
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    color: var(--color-text);
    margin-bottom: 24px;
    opacity: 0.8;
}

.post-content h3 a {
    color: var(--color-text);
    text-decoration: none;
}

.post-content h3 a:hover {
    color: var(--color-primary);
}

.post-date {
    display: block;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    color: var(--color-text);
    opacity: 0.5;
}

.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    margin-top: 32px;
}

.pagination .page-numbers {
    color: var(--color-text);
    font-size: 16px;
    padding: 8px 16px;
    text-decoration: none;
    border: 1px solid rgba(11, 15, 26, 0.2);
    border-radius: 4px;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.pagination .page-numbers:hover,
.pagination .page-numbers.current {
    background-color: var(--color-text);
    color: var(--white);
    border-color: var(--color-text);
}

@media (max-width: 700px) {
    .posts-container {
        grid-template-columns: 1fr;
        padding: 0 24px;
    }
    .post-item {
        width: 100%;
    }
}

@media (max-width: 650px) {
    .post-content h3 {
        font-size: 18px;
    }
    .post-category {
        font-size: 12px;
    }
    .post-date {
        font-size: 12px;
    }
}


/* total row and col */
.row {
    display: flex;
    justify-content: space-between;
}

@media (max-width: 980px) {
    .row {
        justify-content: flex-start;
        flex-direction: column;
    }
}


