/* Author Section */
.author-section {
    padding: 120px 0;
}

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

.author-card {
    display: flex;
    gap: 60px;
    align-items: center;
    background: var(--white);
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.author-image {
    flex: 0 0 280px;
}

.author-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    object-fit: cover;
}

.author-info {
    flex: 1;
}

.author-role {
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    color: var(--color-text);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.author-name {
    font-size: 36px;
    font-weight: 700;
    line-height: 1.2;
    color: var(--color-text);
    margin-bottom: 24px;
}

.author-bio {
    font-size: 16px;
    line-height: 1.7;
    color: var(--color-text);
    margin-bottom: 32px;
}

.author-bio p {
    margin-bottom: 16px;
}

.author-social {
    display: flex;
    align-items: center;
    gap: 16px;
}

.author-social span {
    font-size: 14px;
    color: var(--color-text-secondary);
}

.author-social a {
    transition: transform 0.3s ease;
}

.author-social a:hover {
    transform: translateY(-2px);
}

.author-social a img {
    max-width: 100px;
}


/* Responsive */
@media (max-width: 992px) {
    .author-card {
        flex-direction: column;
        gap: 40px;
    }
    
    .author-image {
        flex: 0 0 auto;
        width: 200px;
    }
}

@media (max-width: 768px) {
    .author-section {
        padding: 80px 0;
    }
    
    .author-card {
        padding: 30px;
    }
    
    .author-name {
        font-size: 28px;
    }
}

@media (max-width: 576px) {
    .author-card {
        padding: 24px;
    }
    
    .author-name {
        font-size: 24px;
    }
    
    .author-bio {
        font-size: 15px;
    }
}


/* 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);
    margin-bottom: 16px;
    text-transform: uppercase;
}

.post-content h3 {
    color: #191D26;
    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-secondary);
    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-secondary);
    opacity: 0.5;
}

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

.pagination .page-numbers {
    color: #0B0F1A;
    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-primary);
    color: #FFFFFF;
    border-color: var(--color-primary);
}

@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;
    }
}


