.author-row-container {
        margin-bottom: 40px;
        width: 100%;
    }
.authors-section{
    max-width: 1106px;
        margin: 0 auto;
}
    .author-columns {
        display: flex;
           gap: 40px;
        align-items: start;
    }

    .author-img-col {
        flex: 0 0 400px;
        /* Width of the image side */
    }

    .author-main-img {
        width: 100%;
        height: auto;
        border-radius: 40px;
        /* Your requested rounded look */
        object-fit: cover;
    }

    .ct-new-columns > .ct-div-block{
        padding: 0;
    }
    .author-content-col {
        flex: 1;
        display: flex;
        flex-direction: column;
        gap: 0;
    }

    .author-name-text {
        font-size: 32px;
        font-weight: 700;
        color: #333;
    }

    .ct-link-button.author-details-link {
        align-self: flex-end;
        /* Pushes button to the right like your image */
           background-color: #0090f5;
    border: 1px solid #0090f5;
        font-size: 20px;
    border-radius: 50px;
        color: #fff;
        padding: 12px 30px;
        text-decoration: none;
    }

    .author-bio-text p {
        font-weight: 400;
        font-size: 16px;
        line-height: 150%;
        letter-spacing: 0%;
        margin-top: 11px;

    }

    /* Responsive: Stack on Mobile */
    @media (max-width: 768px) {
        .author-columns {
            flex-direction: column;
            text-align: center;
        }

        .author-img-col {
            flex: 0 0 auto;
            width: 100%;
            max-width: 300px;
        }

        .author-details-link {
            align-self: center;
        }
    }

    /**
  Single Post
    **/

    .author-header-section {
    background-color:#E9FBFA; /* Light mint background */
    padding: 60px 0;
    width: 100%;
}
.ct-shortcode.single-author {
    max-width: 1044px;
    margin: 0 auto;
    background: #E9FBFA;
}
.author-header-container {
    display: flex;
    max-width: 1200px;
    margin: 0 auto;
   align-items: start;
    gap: 50px;
}

.author-header-content {
    flex: 1;
}

.breadcrumb {
    font-size: 16px;
    color: #000000;
    margin-bottom: 20px;
}

.author-page-title {
    font-size: 48px;
    font-weight: 800;
    margin: 0 0 10px 0;
    color: #000;
}
nav.breadcrumb a {
    color: #000000;
}
.author-page-subtitle {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 25px;
    color: #333;
}

.author-page-description {
    font-size: 16px;
    line-height: 1.6;
    color: #444;
}

.author-header-image {
    flex: 1;
}

.header-img {
    width: 100%;
    height: auto;
    border-radius: 40px; /* Rounded corners as per image */
    box-shadow: 0px 10px 30px rgba(0,0,0,0.1);
}

/* Mobile Responsiveness */
@media (max-width: 992px) {
    .author-header-container {
        flex-direction: column;
        text-align: center;
    }
    
    .author-page-title {
        font-size: 36px;
    }
}
/**
Authors posts
**/
/* Container Grid */
.article-grid {
    display: grid;
    /* This creates 3 equal columns */
    grid-template-columns: repeat(3, 1fr); 
    gap: 30px; /* Space between cards */
    width: 100%;
}

/* Responsive: 2 items on Tablets */
@media (max-width: 992px) {
    .article-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Responsive: 1 item on Mobile */
@media (max-width: 600px) {
    .article-grid {
        grid-template-columns: 1fr;
    }
}

/* Ensure cards take full width of their grid cell */
.article-card {
    width: 100%;
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
}
.author-posts .oxy-dynamic-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    width: 100%;
}

/* Individual Card */
.article-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease;
}

.article-card:hover {
    transform: translateY(-8px);
}

.card-image-wrapper {
    height: 220px;
    overflow: hidden;
}

.card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card-content {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.card-date {
    font-size: 14px;
    color: #888;
    margin-bottom: 10px;
}

.card-title {
    font-size: 22px;
    font-weight: 700;
    margin: 0 0 15px 0;
    color: #000;
}

.card-excerpt {
    font-size: 15px;
    line-height: 1.6;
    color: #555;
    margin-bottom: 20px;
}

/* Read More Link */
.read-more-link {
    margin-top: auto; /* Pushes link to bottom */
    display: flex;
    align-items: center;
    gap: 8px;
    color: #000;
    font-weight: 700;
    text-decoration: none;
    font-size: 14px;
    text-transform: uppercase;
}
.article-by{
    margin-bottom: 20px;
    font-size: 80px;
}
.author-posts{
    max-width: 1044px;
    margin: 0 auto;
}
a.load-more-article-posts {
    /* background: #FFD000; */
    background-color: #FFD200;
    color: #000000;
    border-radius: 12px;
     padding-top: .7rem;
    padding-right: 1rem;
    padding-bottom: .7rem;
    padding-left: 1rem;
    font-size: 16px;
    font-weight: 700;
    font-style: Bold;
    line-height: 100%;
    letter-spacing: 0%;
    text-transform: uppercase;
}
.btn-load-more-post-container {
    margin: 0 auto;
    text-align: center;
    position: relative;
    top: 25px;
}
a.load-more-article-posts:hover {
    background-color: #e6bd00;
    transform: translateY(-8px);
    -webkit-transform: translateY(-8px);
        text-decoration: none;
}
/* Responsive Logic */
@media (max-width: 992px) {
    .oxy-dynamic-list { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
    .oxy-dynamic-list { grid-template-columns: 1fr; }
}