.vcc-author-page {
    max-width: 1200px;
    margin: 0 auto;
    padding: 48px 24px 64px;
    color: #1a1c1e;
}

.vcc-author-breadcrumbs {
    display: flex;
    gap: 10px;
    margin-bottom: 36px;
    font-size: 13px;
    color: #5f6670;
}

.vcc-author-breadcrumbs a {
    color: #5f6670;
}

.vcc-author-hero {
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 32px;
    align-items: center;
    margin-bottom: 64px;
}

.vcc-author-photo {
    width: 260px;
    height: 260px;
    object-fit: cover;
    border-radius: 6px;
    border: 4px solid #e3e2e6;
}

.vcc-author-hero h1,
.vcc-author-page h2,
.vcc-author-page h3 {
    font-family: Merriweather, Georgia, serif;
    color: #002045;
}

.vcc-author-hero h1 {
    font-size: 48px;
    line-height: 1.15;
    margin: 0 0 8px;
}

.vcc-author-title {
    font-family: Merriweather, Georgia, serif;
    font-size: 24px;
    font-style: italic;
    font-weight: 700;
    color: #545f72;
    margin: 0 0 18px;
}

.vcc-author-intro {
    max-width: 720px;
    font-size: 18px;
    line-height: 1.6;
    color: #555b66;
}

.vcc-author-layout {
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 32px;
}

.vcc-author-main section {
    margin-bottom: 42px;
}

.vcc-author-main h2 {
    display: inline-block;
    font-size: 30px;
    line-height: 1.25;
    margin: 0 0 18px;
    border-bottom: 2px solid #002045;
}

.vcc-author-main p {
    font-size: 16px;
    line-height: 1.7;
    color: #555b66;
}

.vcc-editorial-box {
    border-left: 4px solid #2b6cb0;
    background: #e7e7eb;
    padding: 28px;
    margin-top: 48px;
}

.vcc-author-sidebar {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.vcc-sidebar-card,
.vcc-post-card {
    background: #fff;
    border: 1px solid #d9dee8;
    border-radius: 6px;
}

.vcc-sidebar-card {
    padding: 28px;
}

.vcc-sidebar-card h3,
.vcc-contact-card h3 {
    font-size: 24px;
    margin: 0 0 20px;
}

.vcc-sidebar-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.vcc-sidebar-card li {
    margin-bottom: 12px;
    color: #555b66;
}

.vcc-sidebar-card li:before {
    content: "✓";
    margin-right: 10px;
    color: #002045;
    font-weight: 700;
}

.vcc-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.vcc-tags span {
    background: #d6e3ff;
    color: #3c475a;
    padding: 5px 12px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
}

.vcc-contact-card {
    background: #002045;
    color: #fff;
    padding: 32px;
    border-radius: 6px;
    text-align: center;
}

.vcc-contact-card h3 {
    color: #fff;
}

.vcc-contact-card p {
    color: #d6e3ff;
}

.vcc-contact-card a {
    display: block;
    background: #fff;
    color: #002045;
    padding: 12px 18px;
    border-radius: 4px;
    font-weight: 700;
    text-decoration: none;
}

.vcc-author-posts {
    margin-top: 80px;
}

.vcc-section-heading {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #cfd4dc;
    padding-bottom: 18px;
    margin-bottom: 32px;
}

.vcc-section-heading h2 {
    margin: 0;
    border: 0;
}

.vcc-post-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.vcc-post-card {
    overflow: hidden;
}

.vcc-post-card img {
    width: 100%;
    height: 210px;
    object-fit: cover;
}

.vcc-post-card-content {
    padding: 24px;
}

.vcc-post-card-content span {
    font-size: 13px;
    color: #5f6670;
}

.vcc-post-card-content h3 {
    font-size: 24px;
    line-height: 1.2;
}

.vcc-post-card-content h3 a,
.vcc-read-more {
    color: #002045;
    text-decoration: none;
}

.vcc-read-more {
    font-weight: 700;
}

@media (max-width: 900px) {
    .vcc-author-hero,
    .vcc-author-layout,
    .vcc-post-grid {
        grid-template-columns: 1fr;
    }

    .vcc-author-photo {
        width: 220px;
        height: 220px;
    }

    .vcc-author-hero h1 {
        font-size: 36px;
    }
}

/*Author card css */
.my-author-card {
    display: flex;              /* aligns avatar and text side by side */
    align-items: flex-start;    /* aligns items to the top */
    gap: 16px;                  /* spacing between avatar and text */
    margin-top: 40px;           /* space above the card, separating it from post content */
    padding: 20px;              /* inner spacing inside the card */
    border: 1px solid #e0e0e0;  /* light gray border around the card */
    border-radius: 10px;        /* rounded corners */
    background: #f9f9f9;        /* light gray background to distinguish it from the post */
}

/* Avatar image wrapper */
.my-author-avatar img {
    border-radius: 50%;         /* makes the avatar circular */
}

/* Text content wrapper (name, bio, website link) */
.my-author-info {
    flex: 1;                    /* takes up remaining space next to the avatar */
}

/* "By [Author Name]" heading */
.my-author-name {
    margin: 0 0 8px 0;          /* small space below the name */
    font-size: 16px;
}

/* Clickable author name link */
.my-author-name a {
    color: #222;                /* dark text color */
    text-decoration: none;      /* removes underline by default */
    font-weight: 600;           /* bold text */
}

/* Underline the author name link on hover */
.my-author-name a:hover {
    text-decoration: underline;
}

/* Author bio / description text */
.my-author-bio {
    margin: 0 0 8px 0;          /* small space below bio */
    color: #555;                /* medium gray text */
    font-size: 14px;
    line-height: 1.6;           /* comfortable line spacing for readability */
}

/* "Visit website" link */
.my-author-website {
    display: inline-block;
    font-size: 13px;
    color: #0073aa;             /* WordPress admin blue */
    text-decoration: none;
}

/* Underline the website link on hover */
.my-author-website:hover {
    text-decoration: underline;
}
/* Fixed form */
