/*
Theme Name: Prashant Bootstrap
Author: Anuj Shukla
Description: A custom WordPress theme built with Bootstrap 5 for a modern business-style website.
Version: 1.0.0
Requires at least: 6.7
Tested up to: 6.9.4
Requires PHP: 7.4
Text Domain: prashant-bootstrap
*/


:root {
    --pb-ink: #16365f;
    --pb-surface: #f8f5ec;
    --pb-card: rgba(255, 255, 255, 0.92);
    --pb-primary: #1b67b0;
    --pb-primary-deep: #0f4f8f;
    --pb-accent: #d89c4a;
    --pb-accent-soft: #f8e7cd;
    --pb-muted: #64748b;
    --pb-border: rgba(27, 103, 176, 0.14);
    --pb-shadow: 0 1.2rem 3rem rgba(27, 65, 117, 0.12);
    --pb-radius: 1.25rem;
    --pb-font-body: "Manrope", "Segoe UI", sans-serif;
    --pb-font-display: "Cormorant Garamond", Georgia, serif;
}

html {
    scroll-behavior: smooth;
}

body {
    background:
        radial-gradient(circle at top left, rgba(27, 103, 176, 0.12), transparent 32%),
        radial-gradient(circle at bottom right, rgba(216, 156, 74, 0.16), transparent 22%),
        var(--pb-surface);
    color: var(--pb-ink);
    font-family: var(--pb-font-body);
    font-size: 1.02rem;
    font-weight: 500;
    letter-spacing: 0.01em;
    line-height: 1.7;
}

h1,
h2,
h3,
h4,
h5,
h6,
.site-title,
.display-font {
    font-family: var(--pb-font-display);
    letter-spacing: -0.03em;
}

a {
    color: var(--pb-primary);
    text-decoration: none;
}

a:hover,
a:focus {
    color: var(--pb-primary-deep);
}

img {
    max-width: 100%;
    height: auto;
}

.site-preloader {
    background: #0b1220;
    display: grid;
    inset: 0;
    opacity: 1;
    place-items: center;
    position: fixed;
    transition: opacity 0.55s ease, visibility 0.55s ease;
    visibility: visible;
    z-index: 99999;
}

.site-preloader.is-hidden {
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
}

.site-preloader-logo {
    display: block;
    height: auto;
    max-height: 50vh;
    object-fit: contain;
    width: min(320px, 80vw);
}

.site-header {
    backdrop-filter: blur(18px);
    background: rgba(255, 251, 244, 0.9);
    border-bottom: 1px solid rgba(27, 103, 176, 0.12);
    transition: background 0.25s ease, box-shadow 0.25s ease;
}

.site-header.is-scrolled {
    box-shadow: 0 1rem 2rem rgba(27, 65, 117, 0.12);
}

.navbar-brand {
    color: var(--pb-ink);
    font-family: var(--pb-font-display);
    font-size: 1.55rem;
    font-weight: 600;
    letter-spacing: -0.02em;
}

.navbar-brand:hover,
.navbar-brand:focus,
.site-header .nav-link:hover,
.site-header .nav-link:focus,
.site-header .nav-link.active {
    color: var(--pb-primary-deep);
}

.site-header .nav-link {
    color: var(--pb-ink);
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.site-header .dropdown-menu {
    border-radius: 1rem;
    min-width: 14rem;
}

.navbar-toggler {
    color: var(--pb-primary);
}

.navbar-toggler-icon {
    filter: invert(25%) sepia(29%) saturate(1962%) hue-rotate(182deg) brightness(93%) contrast(91%);
}

.primary-menu-drawer {
    background:
        radial-gradient(circle at top right, rgba(216, 156, 74, 0.14), transparent 28%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(239, 245, 252, 0.96));
    border-left: 1px solid rgba(27, 103, 176, 0.12);
    box-shadow: -1.4rem 0 3rem rgba(22, 54, 95, 0.16);
    height: 100dvh;
    max-width: 100vw;
    width: min(26rem, 92vw);
}

.primary-menu-drawer .offcanvas-header {
    border-bottom: 1px solid rgba(27, 103, 176, 0.1);
    padding: 1.4rem 1.5rem;
}

.primary-menu-drawer .offcanvas-body {
    padding: 1.2rem 1.5rem 1.6rem;
}

.primary-menu-drawer .navbar-nav {
    align-items: stretch;
}

.primary-menu-drawer .nav-item {
    width: 100%;
}

.primary-menu-drawer .nav-link {
    border: 1px solid rgba(27, 103, 176, 0.08);
    border-radius: 0.9rem;
    color: var(--pb-ink);
    padding: 0.85rem 1rem;
}

.primary-menu-drawer .nav-link:hover,
.primary-menu-drawer .nav-link:focus,
.primary-menu-drawer .nav-link.active {
    background: rgba(27, 103, 176, 0.08);
    border-color: rgba(27, 103, 176, 0.16);
    color: var(--pb-primary-deep);
}

.primary-menu-drawer .dropdown-menu {
    background: rgba(255, 255, 255, 0.86);
    border: 1px solid rgba(27, 103, 176, 0.1);
    box-shadow: none;
    margin: 0.5rem 0 0.5rem 0.75rem;
    position: static;
    transform: none;
    width: calc(100% - 0.75rem);
}

.hero-eyebrow,
.section-eyebrow {
    color: var(--pb-accent);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.hero-title {
    font-size: clamp(2.8rem, 5vw, 5rem);
    line-height: 0.95;
}

.hero-card,
.feature-card,
.insight-card,
.content-card,
.stat-card,
.cta-panel {
    background: var(--pb-card);
    border: 1px solid var(--pb-border);
    border-radius: var(--pb-radius);
    box-shadow: var(--pb-shadow);
}

.hero-card {
    overflow: hidden;
}

.hero-card-top {
    background: linear-gradient(135deg, var(--pb-primary) 0%, #56a5ff 100%);
    color: #fff;
    padding: 2rem;
}

.hero-card-body {
    padding: 1.75rem 2rem 2rem;
}

.section-shell {
    padding: 5rem 0;
}

.feature-card,
.insight-card,
.content-card,
.stat-card {
    height: 100%;
    padding: 1.75rem;
}

.icon-badge {
    align-items: center;
    background: var(--pb-accent-soft);
    border-radius: 999px;
    color: var(--pb-accent);
    display: inline-flex;
    font-size: 1.1rem;
    font-weight: 700;
    height: 3.25rem;
    justify-content: center;
    width: 3.25rem;
}

.metric {
    color: var(--pb-primary);
    font-family: var(--pb-font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1;
}

.post-thumbnail img,
.insight-thumb img,
.single-hero-thumb img {
    border-radius: var(--pb-radius);
    width: 100%;
}

.insight-thumb img {
    aspect-ratio: 4 / 3;
    object-fit: cover;
}

.post-meta,
.entry-meta,
.small-label {
    color: var(--pb-muted);
    font-size: 0.95rem;
}

.entry-content > * {
    margin-bottom: 1.25rem;
}

.entry-content h2,
.entry-content h3,
.entry-content h4 {
    margin-top: 2rem;
}

.entry-content ul,
.entry-content ol {
    padding-left: 1.25rem;
}

.entry-content blockquote {
    border-left: 4px solid var(--pb-accent);
    margin: 2rem 0;
    padding: 0.5rem 0 0.5rem 1.25rem;
}

.pagination .page-numbers {
    background: #fff;
    border: 1px solid var(--pb-border);
    border-radius: 999px;
    color: var(--pb-ink);
    display: inline-flex;
    justify-content: center;
    margin: 0 0.25rem;
    min-width: 2.75rem;
    padding: 0.6rem 1rem;
}

.pagination .page-numbers.current,
.pagination .page-numbers:hover,
.pagination .page-numbers:focus {
    background: var(--pb-primary);
    border-color: var(--pb-primary);
    color: #fff;
}

.cta-panel {
    padding: 2rem;
}

.site-footer {
    background:
        radial-gradient(circle at 12% 0%, rgba(27, 103, 176, 0.14), transparent 28%),
        radial-gradient(circle at 92% 22%, rgba(216, 156, 74, 0.18), transparent 24%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(246, 241, 229, 0.96));
    border-top: 1px solid rgba(27, 103, 176, 0.12);
    color: var(--pb-ink);
    margin-top: 4rem;
    padding: 4rem 0 2rem;
}

.site-footer a {
    color: var(--pb-primary-deep);
}

.site-footer a:hover,
.site-footer a:focus {
    color: var(--pb-primary);
}

.footer-title {
    color: var(--pb-ink);
    font-family: var(--pb-font-display);
}

.footer-cta {
    align-items: center;
    background:
        radial-gradient(circle at right, rgba(216, 156, 74, 0.18), transparent 28%),
        rgba(255, 255, 255, 0.78);
    border: 1px solid rgba(27, 103, 176, 0.12);
    border-radius: 1.5rem;
    box-shadow: 0 1.2rem 3rem rgba(22, 54, 95, 0.1);
    display: flex;
    gap: 1.5rem;
    justify-content: space-between;
    margin-bottom: 1.25rem;
    padding: 1.5rem;
}

.footer-cta-title {
    font-family: var(--pb-font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 600;
    line-height: 1;
}

.footer-cta-link {
    align-items: center;
    background: var(--pb-primary);
    border-radius: 999px;
    color: #fff !important;
    display: inline-flex;
    font-size: 0.9rem;
    font-weight: 800;
    justify-content: center;
    letter-spacing: 0.08em;
    padding: 0.85rem 1.15rem;
    text-transform: uppercase;
    white-space: nowrap;
}

.footer-main {
    display: grid;
    gap: 1rem;
    grid-template-columns: minmax(0, 1.35fr) minmax(12rem, 0.7fr) minmax(12rem, 0.7fr) minmax(16rem, 1fr);
}

.footer-brand-panel,
.footer-link-panel,
.footer-social-panel {
    background: rgba(255, 255, 255, 0.74);
    border: 1px solid rgba(27, 103, 176, 0.1);
    border-radius: 1.35rem;
    box-shadow: 0 1rem 2.5rem rgba(22, 54, 95, 0.08);
    padding: 1.4rem;
}

.footer-brand {
    align-items: center;
    display: inline-flex;
    font-family: var(--pb-font-display);
    font-size: 1.7rem;
    font-weight: 600;
    gap: 0.85rem;
    line-height: 1;
}

.footer-brand .custom-logo,
.footer-brand .brand-fallback-logo {
    max-height: 3.25rem;
    width: auto;
}

.footer-brand-name {
    color: var(--pb-ink) !important;
}

.footer-brand-copy {
    color: #4d6278;
    margin: 1.25rem 0;
}

.footer-impact-strip {
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem;
}

.footer-impact-strip span {
    background: rgba(216, 156, 74, 0.16);
    border: 1px solid rgba(216, 156, 74, 0.22);
    border-radius: 999px;
    color: var(--pb-primary-deep);
    font-size: 0.8rem;
    font-weight: 800;
    padding: 0.45rem 0.7rem;
}

.widget-title {
    color: var(--pb-ink);
    font-family: var(--pb-font-display);
    font-size: 1.15rem;
    margin-bottom: 1rem;
}

.site-footer ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.site-footer li + li {
    margin-top: 0.65rem;
}

.site-footer li a {
    align-items: center;
    display: inline-flex;
    font-weight: 700;
    gap: 0.55rem;
}

.site-footer li a::before {
    background: var(--pb-accent);
    border-radius: 999px;
    content: "";
    height: 0.38rem;
    opacity: 0.7;
    width: 0.38rem;
}

.footer-social-list {
    display: grid;
    gap: 0.75rem;
}

.footer-social-link {
    align-items: center;
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(27, 103, 176, 0.1);
    border-radius: 1rem;
    display: grid;
    gap: 0.75rem;
    grid-template-columns: 2.55rem 1fr;
    padding: 0.8rem;
}

.footer-social-link strong,
.footer-social-link small {
    display: block;
}

.footer-social-link strong {
    color: var(--pb-ink);
    font-size: 0.92rem;
    line-height: 1.25;
}

.footer-social-link small {
    color: var(--pb-muted);
    font-size: 0.78rem;
    margin-top: 0.15rem;
}

.footer-social-icon {
    align-items: center;
    background: rgba(27, 103, 176, 0.1);
    border-radius: 0.85rem;
    color: var(--pb-primary-deep);
    display: inline-flex;
    height: 2.55rem;
    justify-content: center;
    width: 2.55rem;
}

.footer-social-icon svg {
    display: block;
    height: 1.25rem;
    width: 1.25rem;
}

.footer-social-icon svg * {
    fill: currentColor;
}

.footer-social-icon .social-svg-instagram *,
.profile-social-icon .social-svg-instagram *,
.contact-socials .social-svg-instagram * {
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.8;
}

.footer-social-icon .social-svg-instagram .social-svg-instagram-dot,
.profile-social-icon .social-svg-instagram .social-svg-instagram-dot,
.contact-socials .social-svg-instagram .social-svg-instagram-dot {
    fill: currentColor;
    stroke: none;
}

.site-footer-bottom {
    align-items: center;
    border-top: 1px solid rgba(27, 103, 176, 0.1);
    color: #4d6278;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: space-between;
    margin-top: 3rem;
    padding-top: 1.5rem;
}

.footer-bottom-menu {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem 1.25rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-bottom-menu li + li {
    margin-top: 0;
}

.comment-respond,
.comments-area {
    margin-top: 3rem;
}

.comment-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.comment-list .comment-body {
    background: rgba(255, 255, 255, 0.85);
    border: 1px solid var(--pb-border);
    border-radius: 1rem;
    margin-bottom: 1.25rem;
    padding: 1.25rem;
}

.search-form .search-field,
.comment-form input,
.comment-form textarea {
    border: 1px solid rgba(20, 33, 61, 0.15);
    border-radius: 0.85rem;
    padding: 0.8rem 1rem;
    width: 100%;
}

.search-form .search-submit,
.comment-form .submit {
    background: var(--pb-primary);
    border: 0;
    border-radius: 999px;
    color: #fff;
    font-weight: 600;
    padding: 0.8rem 1.4rem;
}

.search-form {
    display: flex;
    gap: 0.75rem;
}

.search-form label {
    flex: 1 1 auto;
}

.entry-content table {
    width: 100%;
}

.entry-content table th,
.entry-content table td {
    border: 1px solid rgba(20, 33, 61, 0.12);
    padding: 0.75rem;
}

@media (max-width: 767.98px) {
    .section-shell {
        padding: 4rem 0;
    }

    .feature-card,
    .insight-card,
    .content-card,
    .stat-card,
    .cta-panel {
        padding: 1.4rem;
    }

    .search-form {
        flex-direction: column;
    }
}

.brand-fallback-logo,
.custom-logo {
    height: auto;
    max-height: 56px;
    width: auto;
}

.brand-title {
    font-size: 1.8rem;
    font-weight: 600;
}

.card-shell {
    background: var(--pb-card);
    border: 1px solid var(--pb-border);
    border-radius: calc(var(--pb-radius) + 0.1rem);
    box-shadow: var(--pb-shadow);
}

.author-home {
    overflow: hidden;
}

.author-home-container {
    max-width: 1320px;
}

.author-section + .author-section {
    margin-top: 1.5rem;
}

.author-intro {
    padding-top: 0.75rem;
}

.home-hero-shell,
.home-news-feature {
    background:
        radial-gradient(circle at top right, rgba(216, 156, 74, 0.14), transparent 26%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(239, 245, 252, 0.86));
    border: 1px solid rgba(27, 103, 176, 0.1);
    border-radius: 1.8rem;
    box-shadow: 0 1.8rem 3.8rem rgba(22, 54, 95, 0.12);
    overflow: hidden;
    padding: 2rem;
}

.home-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.home-hero-visual {
    min-height: 32rem;
    position: relative;
}

.home-hero-main,
.home-hero-float {
    border: 0.7rem solid #fff;
    border-radius: 1.5rem;
    box-shadow: 0 1.5rem 3rem rgba(22, 54, 95, 0.16);
    object-fit: cover;
    position: absolute;
}

.home-hero-main {
    height: 27rem;
    right: 0;
    top: 1rem;
    width: 78%;
}

.home-hero-float-a {
    height: 12rem;
    left: 0;
    top: 2.5rem;
    transform: rotate(-3deg);
    width: 48%;
}

.home-hero-float-b {
    bottom: 1rem;
    height: 11rem;
    left: 12%;
    transform: rotate(3deg);
    width: 44%;
}

.home-news-carousel {
    padding-inline: 3.4rem;
    position: relative;
}

.home-news-carousel .carousel-inner {
    overflow: hidden;
}

.home-news-grid {
    display: grid;
    gap: 1rem;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.home-news-card {
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(27, 103, 176, 0.1);
    border-radius: 1.25rem;
    box-shadow: 0 1rem 2rem rgba(22, 54, 95, 0.08);
    overflow: hidden;
}

.home-news-thumb {
    display: block;
    overflow: hidden;
}

.home-news-thumb img {
    aspect-ratio: 4 / 3;
    display: block;
    object-fit: cover;
    transition: transform 0.4s ease;
    width: 100%;
}

.home-news-card:hover .home-news-thumb img {
    transform: scale(1.05);
}

.home-news-body {
    padding: 1.2rem;
}

.home-news-title {
    font-family: var(--pb-font-display);
    font-size: 1.45rem;
    font-weight: 600;
    line-height: 1.08;
    margin-bottom: 0.7rem;
}

.home-news-control {
    background: #fff;
    box-shadow: 0 0.8rem 1.8rem rgba(22, 54, 95, 0.12);
}

.home-news-control-prev {
    left: 0;
}

.home-news-control-next {
    right: 0;
}

.author-title {
    font-family: var(--pb-font-display);
    font-size: clamp(2.9rem, 7vw, 5.8rem);
    font-weight: 600;
    line-height: 0.96;
    letter-spacing: -0.05em;
}

.author-keyword {
    color: var(--pb-primary);
    font-size: 1.02rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    max-width: 60rem;
}

.author-quote {
    border-left: 4px solid var(--pb-accent);
    color: var(--pb-ink);
    font-family: var(--pb-font-display);
    font-size: clamp(1.25rem, 2.5vw, 1.7rem);
    font-weight: 500;
    font-style: italic;
    margin: 0;
    max-width: 44rem;
    padding-left: 1.25rem;
}

.author-jump {
    padding: 1.5rem;
}

.hero-slider-shell {
    background:
        radial-gradient(circle at top right, rgba(27, 103, 176, 0.11), transparent 22%),
        linear-gradient(160deg, rgba(255, 255, 255, 0.98), rgba(246, 240, 225, 0.92));
    overflow: hidden;
    padding: 1rem;
}

.hero-slide {
    min-height: 0;
    padding: 0 3.5rem 2.2rem;
}

.hero-slide-title {
    font-family: var(--pb-font-display);
    font-size: clamp(2rem, 3.2vw, 3.2rem);
    font-weight: 600;
    line-height: 1.05;
}

.hero-slide-content {
    max-width: 620px;
    color: var(--pb-muted);
    font-size: 1rem;
    line-height: 1.75;
}

.hero-slide-content > :last-child {
    margin-bottom: 0;
}

.hero-visual-shell {
    align-items: stretch;
    aspect-ratio: auto;
    background: #f4efe6;
    border-radius: calc(var(--pb-radius) + 0.25rem);
    box-shadow: 0 1.6rem 3.5rem rgba(27, 65, 117, 0.14);
    display: flex;
    justify-content: center;
    min-height: 0;
    overflow: hidden;
    position: relative;
}

.hero-slide-image {
    display: block;
    height: 100%;
    object-fit: fill;
    width: 100%;
}

.hero-slide-video {
    border: 0;
    display: block;
    height: 100%;
    object-fit: cover;
    width: 100%;
}

.carousel-indicators {
    bottom: 0;
    margin-bottom: 0.5rem;
}

.carousel-indicators [data-bs-target] {
    background-color: var(--pb-primary);
    border-radius: 999px;
    height: 0.55rem;
    opacity: 0.25;
    width: 2.8rem;
}

.carousel-indicators .active {
    opacity: 1;
}

.carousel-control-prev,
.carousel-control-next {
    align-items: center;
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(27, 103, 176, 0.12);
    border-radius: 999px;
    height: 3rem;
    opacity: 1;
    top: 50%;
    transform: translateY(-50%);
    width: 3rem;
}

.carousel-control-prev {
    left: 1rem;
}

.carousel-control-next {
    right: 1rem;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    filter: invert(27%) sepia(23%) saturate(2053%) hue-rotate(179deg) brightness(91%) contrast(90%);
    height: 1.2rem;
    width: 1.2rem;
}

.info-panel,
.bottom-panel,
.achievement-panel {
    padding: 1.6rem;
}

.panel-title {
    font-family: var(--pb-font-display);
    font-size: clamp(1.9rem, 3vw, 2.6rem);
    font-weight: 600;
    line-height: 1.04;
}

.mini-chip {
    background: var(--pb-accent-soft);
    border-radius: 999px;
    color: var(--pb-accent);
    display: inline-flex;
    font-size: 0.82rem;
    font-weight: 700;
    padding: 0.5rem 0.8rem;
    white-space: nowrap;
}

.feature-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.feature-list li {
    border-top: 1px solid rgba(27, 103, 176, 0.1);
    padding: 0.95rem 0 0;
}

.feature-list li + li {
    margin-top: 0.95rem;
}

.author-story p {
    color: var(--pb-ink);
    margin-bottom: 1rem;
}

.author-story p:last-child {
    margin-bottom: 0;
}

.author-story-lead {
    font-size: 1.06rem;
    font-weight: 700;
}

.felicitation-list {
    display: block;
    list-style: disc;
    margin: 0;
    padding-left: 1.25rem;
}

.felicitation-list-more {
    margin-top: 0.85rem;
}

.felicitation-list li {
    color: var(--pb-ink);
    padding-left: 0.15rem;
}

.felicitation-list li + li {
    margin-top: 0.75rem;
}

.felicitation-list li::marker {
    color: var(--pb-accent);
    font-size: 1.05rem;
}

#top-felicitations .author-story {
    max-width: none;
}

#top-felicitations .felicitation-list {
    columns: 1;
    max-width: none;
}

#top-felicitations .felicitation-list li {
    line-height: 1.65;
    overflow-wrap: normal;
    white-space: normal;
    word-break: normal;
}

.read-more-toggle {
    color: var(--pb-primary);
    font-size: 0.92rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-decoration: none;
    text-transform: uppercase;
}

.read-more-toggle:hover,
.read-more-toggle:focus {
    color: var(--pb-primary-deep);
    text-decoration: none;
}

.news-list {
    display: grid;
    gap: 1rem;
}

.news-item {
    border: 1px solid rgba(27, 103, 176, 0.1);
    border-radius: 1rem;
    padding: 1rem;
}

.news-link {
    color: var(--pb-primary);
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.achievement-scroll {
    display: grid;
    gap: 1rem;
    max-height: 52rem;
    overflow-y: auto;
    padding-right: 0.35rem;
}

.author-home .achievement-scroll {
    max-height: 34rem;
}

.achievement-scroll::-webkit-scrollbar {
    width: 0.65rem;
}

.achievement-scroll::-webkit-scrollbar-thumb {
    background: rgba(27, 103, 176, 0.25);
    border-radius: 999px;
}

.achievement-item {
    align-items: flex-start;
    border: 1px solid rgba(27, 103, 176, 0.1);
    border-radius: 1rem;
    display: grid;
    gap: 1rem;
    grid-template-columns: 5rem 1fr;
    padding: 1.1rem;
}

.achievement-year {
    background: linear-gradient(180deg, rgba(27, 103, 176, 0.12), rgba(216, 156, 74, 0.18));
    border-radius: 0.9rem;
    color: var(--pb-primary-deep);
    font-family: var(--pb-font-display);
    font-size: 1.4rem;
    font-weight: 700;
    line-height: 1;
    padding: 1.05rem 0.6rem;
    text-align: center;
}

.corporate-line {
    border-left: 3px solid rgba(27, 103, 176, 0.18);
    padding-left: 1rem;
}

.linkedin-lens-card {
    background: linear-gradient(180deg, rgba(27, 103, 176, 0.06), rgba(255, 255, 255, 0.95));
    border: 1px solid rgba(27, 103, 176, 0.12);
    border-radius: 1rem;
    padding: 1.15rem 1.2rem;
}

.linkedin-label {
    color: var(--pb-accent);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.linkedin-link {
    color: var(--pb-primary-deep);
    display: block;
    font-size: 0.95rem;
    font-weight: 600;
    overflow-wrap: anywhere;
}

.linkedin-lens-carousel {
    padding-bottom: 2.75rem;
    position: relative;
}

.linkedin-lens-indicators {
    bottom: -0.35rem;
    margin-bottom: 0;
}

.linkedin-lens-control {
    background: rgba(255, 255, 255, 0.88);
    height: 2.75rem;
    width: 2.75rem;
}

.linkedin-embed-slide {
    padding: 0.25rem 0 0.5rem;
}

.linkedin-embed-shell {
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid rgba(27, 103, 176, 0.12);
    border-radius: 1rem;
    min-height: 20rem;
    overflow: hidden;
    padding: 0.75rem;
}

.linkedin-embed-shell iframe {
    border: 0;
    border-radius: 0.75rem;
    display: block;
    margin: 0 auto;
    max-width: 100%;
}

.quote-panel {
    background:
        radial-gradient(circle at 88% 12%, rgba(216, 156, 74, 0.24), transparent 28%),
        radial-gradient(circle at 8% 90%, rgba(27, 103, 176, 0.14), transparent 24%),
        linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(252, 245, 230, 0.9));
    align-items: stretch;
    border-color: rgba(216, 156, 74, 0.4);
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 100%;
    padding: 2.5rem 2rem;
    position: relative;
    text-align: left;
}

.quote-panel::before {
    color: rgba(216, 156, 74, 0.16);
    content: '"';
    font-family: var(--pb-font-display);
    font-size: 10rem;
    line-height: 1;
    position: absolute;
    right: 1.6rem;
    top: 0.2rem;
}

.quote-panel::after {
    background: linear-gradient(180deg, rgba(216, 156, 74, 0.95), rgba(27, 103, 176, 0.08));
    border-radius: 999px;
    content: "";
    height: calc(100% - 4rem);
    left: 2rem;
    position: absolute;
    top: 2rem;
    width: 4px;
}

.quote-panel-inner {
    display: grid;
    gap: 2.2rem;
    padding-left: 1.6rem;
    position: relative;
    z-index: 1;
}

.quote-panel-top {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem 1rem;
    justify-content: space-between;
}

.quote-date {
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid rgba(216, 156, 74, 0.28);
    border-radius: 999px;
    color: var(--pb-primary-deep);
    font-size: 0.9rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    line-height: 1;
    padding: 0.7rem 0.9rem;
    white-space: nowrap;
}

.daily-quote {
    color: var(--pb-ink);
    font-family: var(--pb-font-display);
    font-size: clamp(2.2rem, 3.8vw, 3.45rem);
    font-weight: 600;
    font-style: italic;
    line-height: 1.34;
    margin: 0;
    max-width: 34rem;
    position: relative;
    z-index: 1;
}

.quote-panel-has-image {
    justify-content: flex-start;
    padding: 1rem;
}

.quote-panel-has-image::before,
.quote-panel-has-image::after {
    display: none;
}

.quote-panel-has-image .quote-panel-inner {
    gap: 1rem;
    padding-left: 0;
}

.daily-quote-image {
    background: transparent;
    border-radius: 1rem;
    display: block;
    height: auto;
    max-height: 28rem;
    object-fit: contain;
    width: 100%;
}

.quote-panel .section-eyebrow {
    color: #d19f54;
    position: relative;
    z-index: 1;
}

.lux-page {
    background:
        radial-gradient(circle at top left, rgba(27, 103, 176, 0.08), transparent 26%),
        radial-gradient(circle at bottom right, rgba(216, 156, 74, 0.12), transparent 24%);
    overflow: hidden;
    padding: 2rem 0 5rem;
}

.lux-section {
    padding: 1.25rem 0;
}

.lux-section-last {
    padding-bottom: 0;
}

.lux-shell,
.lux-stat-card,
.lux-pillar-card,
.lux-news-card,
.lux-quote-card {
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(27, 103, 176, 0.1);
    border-radius: 1.6rem;
    box-shadow: 0 1.4rem 3rem rgba(21, 53, 93, 0.1);
}

.lux-shell {
    padding: 2rem;
    position: relative;
}

.lux-shell-lg {
    padding: 2.4rem;
}

.lux-shell::before,
.lux-quote-card::before {
    background: linear-gradient(90deg, rgba(216, 156, 74, 0.95), rgba(216, 156, 74, 0));
    content: "";
    height: 1px;
    left: 2rem;
    position: absolute;
    top: 1.5rem;
    width: 7rem;
}

.lux-kicker {
    color: var(--pb-accent);
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.22em;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.lux-title {
    font-family: var(--pb-font-display);
    font-size: clamp(3.1rem, 6vw, 6rem);
    font-weight: 600;
    line-height: 0.94;
    margin-bottom: 1rem;
}

.lux-subtitle {
    color: var(--pb-primary-deep);
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    max-width: 38rem;
}

.lux-divider {
    background: linear-gradient(90deg, rgba(216, 156, 74, 1), rgba(27, 103, 176, 0.12));
    border-radius: 999px;
    height: 4px;
    margin: 1rem 0 1.5rem;
    width: 8rem;
}

.lux-copy,
.lux-soft-text {
    color: #506276;
}

.lux-copy > * {
    margin-bottom: 1rem;
}

.lux-hero-visual {
    min-height: 100%;
}

.lux-hero-image,
.lux-abstract-stage {
    aspect-ratio: 4 / 5;
    border-radius: 1.6rem;
    box-shadow: 0 2rem 4rem rgba(22, 54, 95, 0.16);
    display: block;
    overflow: hidden;
    width: 100%;
}

.lux-hero-image {
    object-fit: cover;
}

.lux-abstract-stage {
    align-items: center;
    background:
        radial-gradient(circle at 20% 20%, rgba(216, 156, 74, 0.42), transparent 20%),
        radial-gradient(circle at 80% 30%, rgba(27, 103, 176, 0.2), transparent 24%),
        linear-gradient(160deg, #fffaf1 0%, #eef4fc 100%);
    display: flex;
    justify-content: center;
    position: relative;
}

.lux-orbit {
    border: 1px solid rgba(27, 103, 176, 0.16);
    border-radius: 50%;
    position: absolute;
}

.lux-orbit-a {
    height: 72%;
    width: 72%;
}

.lux-orbit-b {
    height: 48%;
    width: 48%;
}

.lux-orbit-c {
    height: 26%;
    width: 26%;
}

.lux-stage-card {
    backdrop-filter: blur(12px);
    background: rgba(255, 255, 255, 0.76);
    border: 1px solid rgba(27, 103, 176, 0.14);
    border-radius: 1.4rem;
    box-shadow: 0 1rem 2.4rem rgba(27, 65, 117, 0.12);
    padding: 1.5rem 1.7rem;
    text-align: center;
}

.lux-stage-card strong {
    display: block;
    font-family: var(--pb-font-display);
    font-size: 2rem;
    margin-top: 0.45rem;
}

.lux-stage-label {
    color: var(--pb-accent);
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.lux-stat-card,
.lux-pillar-card,
.lux-news-card {
    height: 100%;
    padding: 1.6rem;
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.lux-stat-card:hover,
.lux-pillar-card:hover,
.lux-news-card:hover {
    border-color: rgba(216, 156, 74, 0.35);
    box-shadow: 0 1.8rem 3.2rem rgba(22, 54, 95, 0.14);
    transform: translateY(-6px);
}

.lux-stat-number {
    color: var(--pb-primary-deep);
    font-family: var(--pb-font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    line-height: 1;
    margin-bottom: 0.85rem;
}

.lux-section-title,
.lux-card-title {
    font-family: var(--pb-font-display);
    font-weight: 600;
    letter-spacing: -0.03em;
}

.lux-section-title {
    font-size: clamp(2.1rem, 4vw, 3.5rem);
    line-height: 1.02;
    margin-bottom: 1rem;
}

.lux-card-title {
    font-size: clamp(1.35rem, 2.2vw, 1.9rem);
    line-height: 1.08;
}

.lux-timeline-wrap {
    overflow: hidden;
}

.lux-timeline {
    display: grid;
    gap: 1rem;
}

.lux-timeline-item {
    align-items: flex-start;
    background: rgba(255, 255, 255, 0.65);
    border: 1px solid rgba(27, 103, 176, 0.1);
    border-radius: 1.3rem;
    display: grid;
    gap: 1rem;
    grid-template-columns: 4.5rem 1fr;
    padding: 1rem;
}

.lux-timeline-index {
    align-items: center;
    background: linear-gradient(180deg, rgba(216, 156, 74, 0.24), rgba(27, 103, 176, 0.08));
    border-radius: 1rem;
    color: var(--pb-primary-deep);
    display: inline-flex;
    font-family: var(--pb-font-display);
    font-size: 1.7rem;
    font-weight: 700;
    height: 4rem;
    justify-content: center;
    width: 4rem;
}

.lux-quote-card {
    align-items: center;
    background:
        radial-gradient(circle at top right, rgba(216, 156, 74, 0.16), transparent 28%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(251, 244, 229, 0.94));
    display: flex;
    height: 100%;
    justify-content: center;
    min-height: 100%;
    padding: 2.3rem 2rem;
    position: relative;
    text-align: center;
}

.lux-quote-card blockquote {
    color: #c79a56;
    font-family: var(--pb-font-display);
    font-size: clamp(2rem, 3.3vw, 3rem);
    font-style: italic;
    font-weight: 600;
    line-height: 1.45;
    margin: 0;
    max-width: 26rem;
    position: relative;
    z-index: 1;
}

.lux-news-thumb img {
    aspect-ratio: 4 / 3;
    border-radius: 1.1rem;
    object-fit: cover;
    width: 100%;
}

.lux-news-meta {
    color: var(--pb-accent);
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    margin-bottom: 0.65rem;
    text-transform: uppercase;
}

[data-reveal] {
    opacity: 0;
    transform: translate3d(0, 28px, 0);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

[data-reveal="left"] {
    transform: translate3d(32px, 0, 0);
}

[data-reveal="right"] {
    transform: translate3d(-32px, 0, 0);
}

[data-reveal].is-visible {
    opacity: 1;
    transform: translate3d(0, 0, 0);
}

@media (max-width: 991.98px) {
    .footer-main {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .profile-album-index {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .profile-video-grid {
        grid-template-columns: 1fr;
    }

    .profile-media-post-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .profile-media-image-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .footer-brand-panel,
    .footer-social-panel {
        grid-column: span 2;
    }

    .hero-slider-shell {
        padding: 1rem;
    }

    .home-hero-visual {
        min-height: 26rem;
    }

    .home-hero-main {
        height: 22rem;
    }

    .home-news-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .hero-slide {
        min-height: auto;
        padding: 1rem 1.5rem 3rem;
    }

    .hero-visual-shell {
        min-height: 22rem;
    }

    .brand-title {
        font-size: 1.3rem;
    }

    .lux-shell-lg,
    .lux-shell,
    .lux-quote-card {
        padding: 1.6rem;
    }

    .lux-title {
        font-size: clamp(2.8rem, 8vw, 4.8rem);
    }
}

@media (max-width: 767.98px) {
    .site-footer {
        padding: 2.5rem 0 1.5rem;
    }

    .footer-cta,
    .site-footer-bottom {
        align-items: flex-start;
        flex-direction: column;
    }

    .footer-cta-link {
        white-space: normal;
    }

    .footer-main {
        grid-template-columns: 1fr;
    }

    .footer-brand-panel,
    .footer-social-panel {
        grid-column: auto;
    }

    .footer-brand {
        font-size: 1.35rem;
    }

    .profile-album-index {
        grid-template-columns: 1fr;
    }

    .profile-media-post-grid {
        grid-template-columns: 1fr;
    }

    .profile-media-image-grid {
        grid-template-columns: 1fr;
    }

    .profile-album-head {
        align-items: flex-start;
        flex-direction: column;
    }

    .profile-album-actions {
        justify-content: flex-start;
    }

    .author-keyword {
        font-size: 0.95rem;
    }

    .home-hero-shell,
    .home-news-feature {
        padding: 1.25rem;
    }

    .home-hero-visual {
        display: grid;
        gap: 0.9rem;
        min-height: auto;
    }

    .home-hero-main,
    .home-hero-float {
        border-width: 0.45rem;
        height: auto;
        position: relative;
        right: auto;
        left: auto;
        top: auto;
        bottom: auto;
        transform: none;
        width: 100%;
    }

    .home-hero-main,
    .home-hero-float {
        aspect-ratio: 4 / 3;
    }

    .home-news-grid {
        grid-template-columns: 1fr;
    }

    .home-news-carousel {
        padding-inline: 0;
        padding-bottom: 3.75rem;
    }

    .author-home {
        padding-bottom: 4rem;
    }

    .author-section + .author-section {
        margin-top: 1rem;
    }

    .hero-slide {
        padding: 0.5rem 0.75rem 3rem;
    }

    .hero-visual-shell {
        aspect-ratio: 3 / 4;
        min-height: 24rem;
    }

    .carousel-control-prev,
    .carousel-control-next {
        display: none;
    }

    .home-news-control {
        bottom: 0;
        display: flex;
        top: auto;
        transform: none;
    }

    .home-news-control-prev {
        left: calc(50% - 3.4rem);
    }

    .home-news-control-next {
        right: calc(50% - 3.4rem);
    }

    .quote-panel {
        min-height: auto;
        padding: 2rem 1.4rem;
    }

    .quote-panel::after {
        left: 1.4rem;
    }

    .quote-panel-inner {
        gap: 1.5rem;
        padding-left: 1rem;
    }

    .quote-panel-top {
        align-items: flex-start;
        flex-direction: column;
    }

    .linkedin-lens-carousel {
        padding-bottom: 1.5rem;
    }

    .achievement-item {
        grid-template-columns: 1fr;
    }

    .lux-page {
        padding: 1rem 0 4rem;
    }

    .lux-timeline-item {
        grid-template-columns: 1fr;
    }

    .lux-hero-image,
    .lux-abstract-stage {
        aspect-ratio: 4 / 5;
    }
}

.signature-home {
    background:
        radial-gradient(circle at 0% 0%, rgba(27, 103, 176, 0.08), transparent 24%),
        radial-gradient(circle at 100% 20%, rgba(216, 156, 74, 0.12), transparent 22%),
        linear-gradient(180deg, #fbf8f1 0%, #f3f6fb 100%);
    overflow: hidden;
    padding: 2rem 0 5rem;
}

.signature-container {
    max-width: 1340px;
}

.signature-section {
    padding: 1.35rem 0;
}

.signature-section-last {
    padding-bottom: 0;
}

.signature-hero-shell,
.signature-copy-card,
.signature-visual-card,
.signature-editorial-card,
.signature-feature-card,
.signature-gallery-shell,
.signature-quote-tile,
.signature-news-card {
    background: rgba(255, 255, 255, 0.88);
    border: 1px solid rgba(27, 103, 176, 0.1);
    border-radius: 1.8rem;
    box-shadow: 0 1.5rem 3.4rem rgba(22, 54, 95, 0.11);
}

.signature-hero-shell {
    padding: 1.6rem;
}

.signature-copy-card,
.signature-editorial-card,
.signature-feature-card,
.signature-news-card {
    height: 100%;
    padding: 1.8rem;
}

.signature-kicker {
    color: var(--pb-accent);
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.22em;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.signature-title {
    font-family: var(--pb-font-display);
    font-size: clamp(3rem, 6vw, 5.6rem);
    font-weight: 600;
    line-height: 0.95;
    margin-bottom: 0.6rem;
}

.signature-meta {
    color: var(--pb-primary);
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    margin-bottom: 0;
    text-transform: uppercase;
}

.signature-divider {
    background: linear-gradient(90deg, rgba(216, 156, 74, 1), rgba(27, 103, 176, 0));
    border-radius: 999px;
    height: 4px;
    margin: 1.4rem 0 1.6rem;
    width: 8rem;
}

.signature-content > * {
    margin-bottom: 1rem;
}

.signature-stats {
    display: grid;
    gap: 1rem;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-top: 2rem;
}

.signature-stat-pill {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(248, 231, 205, 0.5));
    border: 1px solid rgba(216, 156, 74, 0.22);
    border-radius: 1.25rem;
    min-height: 100%;
    padding: 1rem;
}

.signature-stat-pill strong {
    color: var(--pb-primary-deep);
    display: block;
    font-family: var(--pb-font-display);
    font-size: 2rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 0.65rem;
}

.signature-stat-pill span {
    color: #516477;
    display: block;
    font-size: 0.92rem;
}

.signature-visual-card {
    background:
        radial-gradient(circle at top right, rgba(216, 156, 74, 0.18), transparent 28%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(239, 245, 252, 0.92));
    min-height: 100%;
    overflow: hidden;
    padding: 1rem;
    position: relative;
}

.signature-main-visual {
    aspect-ratio: 4 / 5;
    border-radius: 1.45rem;
    overflow: hidden;
}

.signature-main-visual img,
.signature-gallery-tall img,
.signature-gallery-wide img,
.signature-gallery-card img,
.signature-news-thumb img {
    display: block;
    height: 100%;
    object-fit: cover;
    width: 100%;
}

.signature-float-card {
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid rgba(27, 103, 176, 0.1);
    border-radius: 999px;
    box-shadow: 0 1rem 2rem rgba(22, 54, 95, 0.1);
    color: var(--pb-primary-deep);
    padding: 0.75rem 1rem;
    position: absolute;
}

.signature-float-top {
    left: 1.3rem;
    top: 1.3rem;
}

.signature-float-bottom {
    bottom: 1.3rem;
    right: 1.3rem;
}

.signature-float-bottom strong {
    font-family: var(--pb-font-display);
    font-size: 1.2rem;
    font-weight: 600;
}

.signature-section-title,
.signature-card-title {
    font-family: var(--pb-font-display);
    font-weight: 600;
    letter-spacing: -0.03em;
}

.signature-section-title {
    font-size: clamp(2rem, 3.7vw, 3.35rem);
    line-height: 1.04;
    margin-bottom: 0;
}

.signature-card-title {
    font-size: clamp(1.35rem, 2.2vw, 1.9rem);
    line-height: 1.08;
    margin-bottom: 0;
}

.signature-feature-card,
.signature-news-card {
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.signature-feature-card:hover,
.signature-news-card:hover {
    border-color: rgba(216, 156, 74, 0.3);
    box-shadow: 0 1.8rem 3rem rgba(22, 54, 95, 0.14);
    transform: translateY(-6px);
}

.signature-gallery-shell {
    padding: 1rem;
}

.signature-gallery-tall,
.signature-gallery-wide,
.signature-gallery-card {
    border-radius: 1.45rem;
    overflow: hidden;
}

.signature-gallery-tall {
    aspect-ratio: 4 / 5;
}

.signature-gallery-wide {
    aspect-ratio: 16 / 8.5;
}

.signature-gallery-card {
    aspect-ratio: 1 / 1;
}

.signature-quote-tile {
    align-items: center;
    background:
        radial-gradient(circle at top right, rgba(216, 156, 74, 0.14), transparent 28%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(252, 245, 230, 0.92));
    display: flex;
    height: 100%;
    justify-content: center;
    min-height: 100%;
    padding: 1.6rem;
    text-align: center;
}

.signature-quote-tile blockquote {
    color: #c79a56;
    font-family: var(--pb-font-display);
    font-size: clamp(1.6rem, 2.6vw, 2.35rem);
    font-style: italic;
    font-weight: 600;
    line-height: 1.45;
    margin: 0;
}

.signature-news-meta {
    color: var(--pb-accent);
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.18em;
    margin-bottom: 0.65rem;
    text-transform: uppercase;
}

@media (max-width: 991.98px) {
    .signature-stats {
        grid-template-columns: 1fr;
    }

    .signature-title {
        font-size: clamp(2.6rem, 8vw, 4.6rem);
    }
}

@media (max-width: 767.98px) {
    .signature-home {
        padding: 1rem 0 4rem;
    }

    .signature-hero-shell,
    .signature-copy-card,
    .signature-editorial-card,
    .signature-feature-card,
    .signature-news-card,
    .signature-quote-tile {
        padding: 1.35rem;
    }

    .signature-gallery-shell {
        padding: 0.75rem;
    }
}

.profile-section-page {
    overflow: hidden;
}

.profile-hero {
    padding-bottom: 1rem;
    padding-top: 3.25rem;
}

.profile-page-title {
    font-family: var(--pb-font-display);
    font-size: clamp(3rem, 6vw, 5.6rem);
    font-weight: 600;
    letter-spacing: -0.05em;
    line-height: 0.95;
    margin-bottom: 0.8rem;
}

.profile-lead {
    color: var(--pb-primary-deep);
    font-size: clamp(1.05rem, 2vw, 1.3rem);
    font-weight: 700;
    max-width: 48rem;
}

.pratishthan-hero-logo-panel {
    align-items: center;
    background: #fff;
    display: flex;
    justify-content: center;
    margin: 0 0 0 auto;
    max-width: 31rem;
    overflow: hidden;
    padding: 1.25rem;
    width: 100%;
}

.pratishthan-hero-logo-panel img {
    display: block;
    height: auto;
    max-height: 15rem;
    object-fit: contain;
    width: 100%;
}

.profile-breadcrumb {
    align-items: center;
    color: var(--pb-muted);
    display: flex;
    flex-wrap: wrap;
    font-size: 0.86rem;
    font-weight: 800;
    gap: 0.45rem;
    letter-spacing: 0.08em;
    margin-bottom: 0.85rem;
    text-transform: uppercase;
}

.profile-breadcrumb a,
.profile-breadcrumb span {
    align-items: center;
    display: inline-flex;
}

.profile-breadcrumb a {
    color: var(--pb-primary);
}

.profile-breadcrumb span::before {
    color: rgba(27, 103, 176, 0.42);
    content: "/";
    margin-right: 0.45rem;
}

.profile-breadcrumb span:last-child {
    color: var(--pb-accent);
}

.profile-hero .row {
    align-items: center;
}

.profile-hero-card,
.profile-stat-card,
.profile-content-panel,
.profile-feature-card,
.profile-gallery-block,
.profile-video-card,
.profile-social-card {
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(27, 103, 176, 0.1);
    border-radius: 1.5rem;
    box-shadow: 0 1.4rem 3rem rgba(21, 53, 93, 0.1);
}

.profile-hero-card {
    align-items: flex-start;
    background:
        radial-gradient(circle at top right, rgba(216, 156, 74, 0.18), transparent 28%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(239, 245, 252, 0.92));
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 0;
    padding: 1.35rem 1.5rem;
}

.profile-hero-card span {
    color: var(--pb-accent);
    display: block;
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.2em;
    margin-bottom: 0.6rem;
    text-transform: uppercase;
}

.profile-hero-card strong {
    display: block;
    font-family: var(--pb-font-display);
    font-size: clamp(1.85rem, 3vw, 2.8rem);
    font-weight: 600;
    line-height: 1;
}

.profile-band {
    padding: 1.35rem 0;
}

.profile-band-last {
    padding-bottom: 5rem;
}

.profile-stat-card,
.profile-content-panel,
.profile-feature-card,
.profile-video-card {
    height: 100%;
    padding: 1.6rem;
}

.profile-stat-number {
    color: var(--pb-primary-deep);
    font-family: var(--pb-font-body);
    font-size: clamp(1.8rem, 2.6vw, 2.45rem);
    font-weight: 800;
    letter-spacing: -0.01em;
    line-height: 1.08;
    margin-bottom: 0.85rem;
}

.profile-stack {
    display: grid;
    gap: 1rem;
}

.profile-card-title,
.profile-section-title {
    font-family: var(--pb-font-display);
    font-weight: 600;
    letter-spacing: -0.03em;
    line-height: 1.08;
}

.profile-card-title {
    font-size: clamp(1.35rem, 2vw, 1.9rem);
    margin-bottom: 0.8rem;
}

.profile-section-title {
    font-size: clamp(2rem, 4vw, 3.3rem);
}

.profile-image-mosaic {
    display: grid;
    gap: 1rem;
    grid-template-columns: repeat(6, 1fr);
}

.profile-image-mosaic figure,
.profile-gallery-grid figure {
    border-radius: 1.25rem;
    margin: 0;
    overflow: hidden;
}

.profile-image-mosaic figure:nth-child(1) {
    grid-column: span 4;
}

.profile-image-mosaic figure:nth-child(2) {
    grid-column: span 2;
}

.profile-image-mosaic figure:nth-child(n+3) {
    grid-column: span 3;
}

.profile-image-mosaic img,
.profile-gallery-grid img,
.profile-card-image {
    display: block;
    height: 100%;
    object-fit: cover;
    width: 100%;
}

.profile-image-mosaic img {
    aspect-ratio: 4 / 3;
}

.page-karulkar-pratishthan .profile-image-mosaic {
    column-count: 3;
    column-gap: 1rem;
    display: block;
}

.page-karulkar-pratishthan .profile-image-mosaic figure,
.page-karulkar-pratishthan .profile-image-mosaic figure:nth-child(1),
.page-karulkar-pratishthan .profile-image-mosaic figure:nth-child(2),
.page-karulkar-pratishthan .profile-image-mosaic figure:nth-child(n+3) {
    break-inside: avoid;
    display: block;
    grid-column: auto;
    margin: 0 0 1rem;
    overflow: hidden;
}

.page-karulkar-pratishthan .profile-image-mosaic img {
    aspect-ratio: auto;
    background: transparent;
    display: block;
    height: auto;
    object-fit: contain;
    width: 100%;
}

.profile-timeline {
    display: grid;
    gap: 1.35rem;
    position: relative;
}

.profile-timeline::before {
    background: linear-gradient(180deg, rgba(216, 156, 74, 0), rgba(216, 156, 74, 0.85), rgba(27, 103, 176, 0.3));
    border-radius: 999px;
    bottom: 1rem;
    content: "";
    left: 50%;
    position: absolute;
    top: 1rem;
    transform: translateX(-50%);
    width: 4px;
}

.profile-timeline-item {
    align-items: start;
    background:
        radial-gradient(circle at top right, rgba(216, 156, 74, 0.11), transparent 28%),
        rgba(255, 255, 255, 0.88);
    border: 1px solid rgba(27, 103, 176, 0.12);
    border-radius: 1.4rem;
    display: grid;
    gap: 1rem;
    grid-template-columns: 7rem 1fr;
    padding: 1.25rem;
    position: relative;
    width: calc(50% - 2.8rem);
}

.profile-timeline-item:nth-child(odd) {
    justify-self: start;
}

.profile-timeline-item:nth-child(even) {
    justify-self: end;
}

.profile-timeline-dot {
    align-items: center;
    background: var(--pb-primary);
    border: 5px solid #fffaf1;
    border-radius: 999px;
    box-shadow: 0 0 0 1px rgba(27, 103, 176, 0.14), 0 1rem 2rem rgba(27, 65, 117, 0.18);
    color: #fff;
    display: inline-flex;
    font-size: 0.75rem;
    font-weight: 800;
    height: 3.25rem;
    justify-content: center;
    letter-spacing: 0.08em;
    position: absolute;
    top: 1.3rem;
    width: 3.25rem;
    z-index: 2;
}

.profile-timeline-item:nth-child(odd) .profile-timeline-dot {
    right: -4.45rem;
}

.profile-timeline-item:nth-child(even) .profile-timeline-dot {
    left: -4.45rem;
}

.profile-timeline-year {
    background: linear-gradient(180deg, rgba(216, 156, 74, 0.24), rgba(27, 103, 176, 0.08));
    border-radius: 1rem;
    color: var(--pb-primary-deep);
    font-family: var(--pb-font-display);
    font-size: 1.65rem;
    font-weight: 700;
    line-height: 1;
    padding: 1rem 0.6rem;
    text-align: center;
}

.page-timeline-journey-so-far .profile-hero-card {
    min-height: 0;
    position: sticky;
    top: 7rem;
}

.page-timeline-journey-so-far .profile-timeline-item {
    backdrop-filter: blur(12px);
}

.page-awards-achievements-felicitations .profile-hero {
    padding-bottom: 2rem;
}

.page-awards-achievements-felicitations .profile-feature-card {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    padding: 1rem;
}

.page-awards-achievements-felicitations .profile-card-media {
    margin-bottom: 0;
}

.page-awards-achievements-felicitations .profile-card-image {
    aspect-ratio: 16 / 10.5;
}

.page-awards-achievements-felicitations .profile-card-body {
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(27, 103, 176, 0.1);
    border-radius: 1rem;
    margin: -1.6rem 0.6rem 0;
    min-height: 11rem;
    padding: 1.2rem;
    position: relative;
    z-index: 1;
}

.profile-feature-card,
.profile-video-card,
.profile-social-card {
    transition: border-color 0.35s ease, box-shadow 0.35s ease, transform 0.35s ease;
}

.profile-feature-card:hover,
.profile-video-card:hover,
.profile-social-card:hover {
    border-color: rgba(216, 156, 74, 0.35);
    box-shadow: 0 1.8rem 3.2rem rgba(22, 54, 95, 0.14);
    transform: translateY(-6px);
}

.profile-card-media {
    background: #eef4fc;
    border-radius: 1.1rem;
    margin-bottom: 1.15rem;
    overflow: hidden;
}

.profile-card-image {
    aspect-ratio: 4 / 3;
    border-radius: 0;
    height: auto;
}

.profile-card-body {
    display: flex;
    flex-direction: column;
    min-height: 10rem;
}

.profile-accolade-card .profile-card-body,
.page-accolades .profile-feature-card .profile-card-body {
    min-height: auto;
}

.page-accolades .profile-feature-card {
    align-self: flex-start;
    height: auto;
}

.page-accolades .profile-card-image {
    aspect-ratio: 4 / 3;
    display: block;
    object-fit: cover;
    width: 100%;
}

.page-accolades .profile-card-body p:empty {
    display: none;
}

.profile-card-kicker {
    color: var(--pb-accent);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.profile-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.profile-list li {
    border-top: 1px solid rgba(27, 103, 176, 0.1);
    padding-top: 0.75rem;
}

.profile-list li + li {
    margin-top: 0.75rem;
}

.profile-gallery-block {
    margin-bottom: 1.5rem;
    padding: 1.4rem;
}

.profile-album-index {
    display: grid;
    gap: 1.25rem;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.profile-album-card {
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(27, 103, 176, 0.1);
    border-radius: 1.45rem;
    box-shadow: 0 1.4rem 3rem rgba(21, 53, 93, 0.1);
    color: var(--pb-ink);
    display: block;
    overflow: hidden;
    transition: border-color 0.35s ease, box-shadow 0.35s ease, transform 0.35s ease;
}

.profile-album-card:hover,
.profile-album-card:focus {
    border-color: rgba(216, 156, 74, 0.35);
    box-shadow: 0 1.8rem 3.2rem rgba(22, 54, 95, 0.14);
    color: var(--pb-ink);
    transform: translateY(-6px);
}

.profile-album-cover {
    background:
        radial-gradient(circle at top right, rgba(216, 156, 74, 0.16), transparent 30%),
        #eef4fc;
    display: block;
    overflow: hidden;
}

.profile-album-cover img {
    aspect-ratio: 4 / 3;
    display: block;
    object-fit: cover;
    transition: transform 0.45s ease;
    width: 100%;
}

.profile-album-card:hover .profile-album-cover img,
.profile-album-card:focus .profile-album-cover img {
    transform: scale(1.05);
}

.profile-album-body {
    display: grid;
    gap: 0.55rem;
    padding: 1.2rem;
}

.profile-album-body strong {
    font-family: var(--pb-font-display);
    font-size: clamp(1.6rem, 3vw, 2.1rem);
    font-weight: 600;
    line-height: 1;
}

.profile-album-body > span:last-child {
    color: var(--pb-primary);
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.profile-album-head {
    align-items: flex-end;
    display: flex;
    gap: 1rem;
    justify-content: space-between;
    margin-bottom: 1.25rem;
}

.profile-album-actions {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: flex-end;
}

.profile-media-posts-head {
    align-items: flex-end;
    display: flex;
    justify-content: space-between;
    margin-bottom: 1.25rem;
}

.profile-media-post-grid {
    display: grid;
    gap: 1.25rem;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.profile-media-image-grid {
    display: grid;
    gap: 1rem;
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.profile-media-image-grid figure {
    background: #eef4fc;
    border: 0.5rem solid rgba(255, 255, 255, 0.94);
    border-radius: 1.25rem;
    box-shadow: 0 1rem 2.4rem rgba(22, 54, 95, 0.1);
    margin: 0;
    overflow: hidden;
}

.profile-media-image-grid img {
    aspect-ratio: 4 / 3;
    display: block;
    object-fit: cover;
    transition: transform 0.4s ease;
    width: 100%;
}

.profile-media-image-grid figure:hover img {
    transform: scale(1.04);
}

.profile-media-post-card {
    height: 100%;
}

.profile-gallery-grid {
    display: grid;
    gap: 1rem;
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.profile-gallery-grid img {
    aspect-ratio: 4 / 3;
}

.profile-video-card {
    background:
        radial-gradient(circle at top right, rgba(27, 103, 176, 0.12), transparent 28%),
        rgba(255, 255, 255, 0.9);
    min-height: 17rem;
}

.profile-video-album-cover {
    position: relative;
}

.profile-video-album-cover::after {
    background: linear-gradient(180deg, transparent, rgba(0, 28, 58, 0.5));
    bottom: 0;
    content: "";
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
}

.profile-video-cover-placeholder {
    align-items: center;
    aspect-ratio: 4 / 3;
    color: var(--pb-primary-deep);
    display: flex;
    font-family: var(--pb-font-display);
    font-size: clamp(2rem, 3vw, 3rem);
    justify-content: center;
}

.profile-video-cover-play {
    align-items: center;
    background: rgba(255, 255, 255, 0.94);
    border-radius: 999px;
    bottom: 1rem;
    color: var(--pb-primary);
    display: inline-flex;
    font-size: 0.72rem;
    font-weight: 900;
    height: 3.2rem;
    justify-content: center;
    letter-spacing: 0.08em;
    position: absolute;
    right: 1rem;
    text-transform: uppercase;
    width: 3.2rem;
    z-index: 1;
}

.profile-video-grid {
    display: grid;
    gap: 1.25rem;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.profile-video-player-card {
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(27, 103, 176, 0.1);
    border-radius: 1.35rem;
    box-shadow: 0 1.1rem 2.4rem rgba(21, 53, 93, 0.1);
    overflow: hidden;
}

.profile-video-frame {
    background: #07101c;
    aspect-ratio: 16 / 9;
    display: block;
}

.profile-video-frame iframe,
.profile-video-frame video {
    border: 0;
    display: block;
    height: 100%;
    width: 100%;
}

.profile-video-external {
    align-items: center;
    color: #fff;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    height: 100%;
    justify-content: center;
    min-height: 16rem;
    text-decoration: none;
}

.profile-video-player-body {
    padding: 1.15rem;
}

.profile-video-grid,
.profile-video-player-card,
.profile-video-frame {
    min-width: 0;
    width: 100%;
}

.profile-video-frame iframe,
.profile-video-frame video {
    max-width: 100%;
}

.profile-play-mark,
.profile-social-icon {
    align-items: center;
    background: var(--pb-accent-soft);
    border-radius: 999px;
    color: var(--pb-accent);
    display: inline-flex;
    font-weight: 800;
    height: 4rem;
    justify-content: center;
    margin-bottom: 1.25rem;
    width: 4rem;
}

.profile-play-mark {
    font-size: 0.78rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.profile-social-card {
    align-items: flex-start;
    display: flex;
    gap: 1.2rem;
    height: 100%;
    padding: 1.6rem;
}

.profile-social-icon {
    flex: 0 0 auto;
    font-family: var(--pb-font-display);
    font-size: 1.8rem;
    margin-bottom: 0;
}

.profile-stat-icon {
    align-items: center;
    background: var(--pb-accent-soft);
    border: 1px solid rgba(216, 156, 74, 0.24);
    border-radius: 999px;
    color: var(--pb-primary-deep);
    display: inline-flex;
    font-size: 0.82rem;
    font-weight: 900;
    height: 2.65rem;
    justify-content: center;
    letter-spacing: 0.03em;
    margin-bottom: 0.85rem;
    width: 2.65rem;
}

.profile-social-icon svg,
.profile-stat-icon svg {
    display: block;
    height: 1.35rem;
    width: 1.35rem;
}

.profile-social-icon svg *,
.profile-stat-icon svg * {
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.8;
}

.profile-social-icon svg path,
.profile-stat-icon svg path {
    fill: currentColor;
    stroke: none;
}

.profile-social-icon svg circle,
.profile-social-icon svg rect,
.profile-stat-icon svg circle,
.profile-stat-icon svg rect {
    fill: none;
}

.profile-social-icon svg path + path,
.profile-stat-icon svg path + path {
    fill: #fff;
}

.profile-social-icon .social-svg-youtube rect,
.profile-stat-icon .social-svg-youtube rect {
    fill: currentColor;
    stroke: none;
}

.profile-social-icon .social-svg-youtube polygon,
.profile-stat-icon .social-svg-youtube polygon {
    fill: #fff;
    stroke: none;
}

.page-social-media .profile-stat-icon:has(.social-svg-youtube),
.page-social-media .profile-social-icon:has(.social-svg-youtube),
.page-social-media .profile-stat-icon-youtube,
.page-social-media .profile-social-icon-youtube {
    background: #ff0033;
}

.profile-social-icon .social-svg-youtube,
.profile-stat-icon .social-svg-youtube {
    height: 1.55rem;
    width: 1.85rem;
}

.page-social-media .profile-stat-card {
    background:
        radial-gradient(circle at top right, rgba(216, 156, 74, 0.14), transparent 30%),
        rgba(255, 255, 255, 0.9);
    align-items: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 13.5rem;
    text-align: center;
}

.page-social-media .profile-stat-card p {
    color: var(--pb-primary-deep);
    font-size: 1.05rem;
    font-weight: 800;
}

.profile-stat-platform-link {
    align-items: center;
    color: var(--pb-primary-deep);
    display: flex;
    flex-direction: column;
    font-size: 1.05rem;
    font-weight: 800;
    height: 100%;
    justify-content: center;
    text-decoration: none;
    width: 100%;
}

.profile-stat-platform-link:hover,
.profile-stat-platform-link:focus {
    color: var(--pb-primary);
}

.profile-stat-thumbnail-wrap {
    border-radius: 1.35rem;
    display: block;
    margin: 0 auto 1rem;
    padding: 0.25rem;
    position: relative;
}

.profile-stat-thumbnail {
    background: #fff;
    border: 1px solid rgba(27, 103, 176, 0.12);
    border-radius: 1.2rem;
    box-shadow: 0 1rem 2.2rem rgba(21, 53, 93, 0.12);
    display: block;
    height: 7rem;
    margin: 0 auto 1rem;
    object-fit: cover;
    width: 7rem;
}

.profile-stat-thumbnail-badge {
    align-items: center;
    border: 3px solid #fff;
    border-radius: 999px;
    bottom: -0.1rem;
    color: #fff;
    display: inline-flex;
    height: 2.25rem;
    justify-content: center;
    position: absolute;
    right: -0.1rem;
    width: 2.25rem;
}

.profile-stat-thumbnail-badge svg,
.profile-stat-platform-name-icon svg {
    display: block;
    height: 1rem;
    width: 1rem;
}

.profile-stat-thumbnail-badge svg *,
.profile-stat-platform-name-icon svg * {
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.8;
}

.profile-stat-thumbnail-badge svg path,
.profile-stat-platform-name-icon svg path {
    fill: currentColor;
    stroke: none;
}

.profile-stat-thumbnail-badge svg circle,
.profile-stat-thumbnail-badge svg rect,
.profile-stat-platform-name-icon svg circle,
.profile-stat-platform-name-icon svg rect {
    fill: none;
}

.profile-stat-thumbnail-badge svg path + path,
.profile-stat-platform-name-icon svg path + path {
    fill: #fff;
}

.profile-stat-platform-name {
    align-items: center;
    display: inline-flex;
    gap: 0.45rem;
    justify-content: center;
}

.profile-stat-platform-name-icon {
    align-items: center;
    border-radius: 999px;
    color: #fff;
    display: inline-flex;
    height: 1.75rem;
    justify-content: center;
    width: 1.75rem;
}

.profile-stat-platform-facebook .profile-stat-thumbnail-wrap {
    background: linear-gradient(135deg, #1877f2, #68a8ff);
}

.profile-stat-platform-facebook .profile-stat-thumbnail-badge,
.profile-stat-platform-facebook .profile-stat-platform-name-icon {
    background: #1877f2;
}

.profile-stat-platform-instagram .profile-stat-thumbnail-wrap {
    background: linear-gradient(135deg, #f58529, #dd2a7b 52%, #515bd4);
}

.profile-stat-platform-instagram .profile-stat-thumbnail-badge,
.profile-stat-platform-instagram .profile-stat-platform-name-icon {
    background: linear-gradient(135deg, #f58529, #dd2a7b 52%, #515bd4);
}

.profile-stat-platform-x .profile-stat-thumbnail-wrap {
    background: linear-gradient(135deg, #111, #555);
}

.profile-stat-platform-x .profile-stat-thumbnail-badge,
.profile-stat-platform-x .profile-stat-platform-name-icon {
    background: #111;
}

.profile-stat-platform-linkedin .profile-stat-thumbnail-wrap {
    background: linear-gradient(135deg, #0a66c2, #5aa6e8);
}

.profile-stat-platform-linkedin .profile-stat-thumbnail-badge,
.profile-stat-platform-linkedin .profile-stat-platform-name-icon {
    background: #0a66c2;
}

.page-social-media .profile-social-icon,
.page-social-media .profile-stat-icon {
    background: linear-gradient(135deg, var(--pb-primary), #56a5ff);
    border-color: rgba(27, 103, 176, 0.18);
    color: #fff;
    font-family: var(--pb-font-body);
}

.page-about-prashant-karulkar .profile-hero {
    padding-bottom: 1.5rem;
}

.page-about-prashant-karulkar .profile-hero-card {
    min-height: 0;
    position: relative;
}

.page-about-prashant-karulkar .profile-hero-card::before {
    content: none;
}

.page-about-prashant-karulkar .profile-hero-card span {
    margin-bottom: 0.85rem;
}

.page-about-prashant-karulkar .profile-hero-card strong {
    font-size: clamp(2rem, 3.3vw, 3rem);
}

.about-creative-band {
    padding-top: 0;
}

.about-creative-shell {
    background:
        radial-gradient(circle at 12% 20%, rgba(216, 156, 74, 0.18), transparent 22%),
        radial-gradient(circle at 90% 15%, rgba(27, 103, 176, 0.11), transparent 24%),
        rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(27, 103, 176, 0.1);
    border-radius: 1.8rem;
    box-shadow: 0 1.8rem 3.8rem rgba(22, 54, 95, 0.12);
    overflow: hidden;
    padding: 1.5rem;
}

.about-portrait-stage {
    min-height: 32rem;
    position: relative;
}

.about-portrait-card {
    background: #fff;
    border: 1px solid rgba(27, 103, 176, 0.1);
    border-radius: 1.4rem;
    box-shadow: 0 1.4rem 2.8rem rgba(22, 54, 95, 0.14);
    margin: 0;
    overflow: hidden;
    padding: 0.65rem;
    position: absolute;
}

.about-portrait-card img {
    border-radius: 1rem;
    display: block;
    height: 100%;
    object-fit: cover;
    width: 100%;
}

.about-portrait-1 {
    height: 23.5rem;
    left: 0;
    top: 1rem;
    transform: rotate(-2deg);
    width: 72%;
    z-index: 2;
}

.about-portrait-2 {
    height: 16rem;
    right: 0;
    top: 4rem;
    transform: rotate(3deg);
    width: 48%;
    z-index: 3;
}

.about-portrait-3 {
    bottom: 0;
    height: 13rem;
    left: 20%;
    transform: rotate(2deg);
    width: 52%;
    z-index: 9;
}

.about-creative-copy {
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: center;
    padding: 2rem 1rem 2rem 0;
}

.about-creative-title {
    font-family: var(--pb-font-display);
    font-size: clamp(2.25rem, 4vw, 4rem);
    font-weight: 600;
    letter-spacing: -0.04em;
    line-height: 1;
    margin-bottom: 1.25rem;
}

.about-creative-text {
    color: #506276;
    font-size: 1.06rem;
    margin-bottom: 1.4rem;
    max-width: 46rem;
}

.about-signature-quote {
    border-left: 4px solid var(--pb-accent);
    color: #c79a56;
    font-family: var(--pb-font-display);
    font-size: clamp(1.6rem, 2.8vw, 2.5rem);
    font-style: italic;
    font-weight: 600;
    line-height: 1.35;
    margin: 0 0 1.5rem;
    padding-left: 1.25rem;
}

.about-pill-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.about-pill-row span {
    background: rgba(248, 231, 205, 0.82);
    border: 1px solid rgba(216, 156, 74, 0.24);
    border-radius: 999px;
    color: var(--pb-primary-deep);
    font-size: 0.85rem;
    font-weight: 800;
    padding: 0.65rem 0.9rem;
}

.page-about-prashant-karulkar .profile-stack {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.page-about-prashant-karulkar .profile-content-panel {
    min-height: 100%;
}

.page-about-prashant-karulkar .profile-band {
    padding: 1rem 0;
}

.page-about-prashant-karulkar .profile-band-last {
    padding-bottom: 5rem;
    padding-top: 2rem;
}

.page-about-prashant-karulkar .profile-stat-card {
    min-height: 10rem;
}

.page-about-prashant-karulkar .profile-stat-number {
    font-size: clamp(1.65rem, 2vw, 2.1rem);
    white-space: nowrap;
}

@media (max-width: 991.98px) {
    .profile-gallery-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .profile-timeline::before {
        left: 1.6rem;
    }

    .profile-timeline-item,
    .profile-timeline-item:nth-child(odd),
    .profile-timeline-item:nth-child(even) {
        justify-self: stretch;
        margin-left: 3.8rem;
        width: auto;
    }

    .profile-timeline-item:nth-child(odd) .profile-timeline-dot,
    .profile-timeline-item:nth-child(even) .profile-timeline-dot {
        left: -3.85rem;
        right: auto;
    }

    .page-timeline-journey-so-far .profile-hero-card {
        position: static;
    }

    .about-creative-copy {
        padding: 1rem 0 0;
    }

    .about-portrait-stage {
        min-height: 24rem;
    }

    .about-portrait-1 {
        height: 18rem;
    }

    .about-portrait-2 {
        height: 13rem;
    }

    .about-portrait-3 {
        height: 11rem;
    }
}

@media (max-width: 767.98px) {
    .profile-page-title {
        font-size: clamp(2.6rem, 12vw, 4.2rem);
    }

    .profile-hero {
        padding-bottom: 2rem;
    }

    .profile-band-last {
        padding-bottom: 4rem;
    }

    .profile-timeline-item,
    .profile-social-card {
        grid-template-columns: 1fr;
    }

    .profile-timeline-item,
    .profile-timeline-item:nth-child(odd),
    .profile-timeline-item:nth-child(even) {
        margin-left: 2.8rem;
    }

    .profile-timeline-dot {
        height: 2.8rem;
        width: 2.8rem;
    }

    .profile-timeline-item:nth-child(odd) .profile-timeline-dot,
    .profile-timeline-item:nth-child(even) .profile-timeline-dot {
        left: -3.2rem;
    }

    .page-awards-achievements-felicitations .profile-card-body {
        margin-left: 0;
        margin-right: 0;
    }

    .about-creative-shell {
        padding: 1rem;
    }

    .about-portrait-stage {
        display: grid;
        gap: 0.9rem;
        min-height: auto;
    }

    .about-portrait-card,
    .about-portrait-1,
    .about-portrait-2,
    .about-portrait-3 {
        height: auto;
        left: auto;
        position: relative;
        right: auto;
        top: auto;
        transform: none;
        width: 100%;
    }

    .about-portrait-card img {
        aspect-ratio: 4 / 3;
    }

    .page-about-prashant-karulkar .profile-stack {
        grid-template-columns: 1fr;
    }

    .profile-social-card {
        display: block;
    }

    .profile-social-icon {
        margin-bottom: 1rem;
    }

    .profile-gallery-grid,
    .profile-image-mosaic {
        grid-template-columns: 1fr;
    }

    .profile-video-grid {
        grid-template-columns: minmax(0, 1fr);
    }

    .profile-video-player-card {
        border-radius: 1rem;
    }

    .profile-video-player-body {
        padding: 0.9rem;
    }

    .profile-video-frame {
        aspect-ratio: 16 / 9;
        overflow: hidden;
    }

    .profile-image-mosaic figure,
    .profile-image-mosaic figure:nth-child(1),
    .profile-image-mosaic figure:nth-child(2),
    .profile-image-mosaic figure:nth-child(n+3) {
        grid-column: auto;
    }
}

/* Contact page. */
.contact-hero {
    padding-bottom: 2rem;
}

.contact-hero-panel {
    background:
        radial-gradient(circle at 90% 10%, rgba(216, 156, 74, 0.23), transparent 28%),
        linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(237, 245, 253, 0.92));
    border: 1px solid rgba(27, 103, 176, 0.12);
    border-radius: 2rem;
    box-shadow: 0 1.5rem 4rem rgba(22, 54, 95, 0.1);
    padding: clamp(2rem, 6vw, 5rem);
}

.contact-page-title,
.contact-section-title {
    color: var(--pb-ink);
    font-family: var(--pb-font-display);
    font-weight: 600;
}

.contact-page-title {
    font-size: clamp(3rem, 7vw, 6.8rem);
    line-height: 0.92;
    max-width: 12ch;
}

.contact-lead {
    color: #4d6278;
    font-size: clamp(1rem, 2vw, 1.25rem);
    line-height: 1.8;
    max-width: 48rem;
}

.contact-main-section {
    padding: 1rem 0 4rem;
}

.contact-info-panel,
.contact-form-panel {
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid rgba(27, 103, 176, 0.12);
    border-radius: 1.75rem;
    box-shadow: 0 1.2rem 3rem rgba(22, 54, 95, 0.09);
    height: 100%;
    padding: clamp(1.5rem, 4vw, 2.5rem);
}

.contact-info-panel {
    background:
        radial-gradient(circle at bottom left, rgba(216, 156, 74, 0.2), transparent 30%),
        linear-gradient(155deg, #f8fbff, #fffaf2);
}

.contact-section-title {
    font-size: clamp(2rem, 4vw, 3.25rem);
    line-height: 1;
    margin-bottom: 1.25rem;
}

.contact-email-card {
    align-items: center;
    background: #fff;
    border: 1px solid rgba(27, 103, 176, 0.12);
    border-radius: 1.2rem;
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    overflow-wrap: anywhere;
    padding: 1rem;
    text-decoration: none;
}

.contact-email-icon,
.contact-socials a {
    align-items: center;
    background: var(--pb-primary);
    border-radius: 999px;
    color: #fff;
    display: inline-flex;
    flex: 0 0 auto;
    justify-content: center;
}

.contact-email-icon {
    font-size: 1.25rem;
    font-weight: 800;
    height: 3rem;
    width: 3rem;
}

.contact-email-card small,
.contact-email-card strong {
    display: block;
}

.contact-email-card small {
    color: var(--pb-muted);
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.contact-email-card strong {
    color: var(--pb-ink);
    margin-top: 0.15rem;
}

.contact-socials {
    display: flex;
    flex-wrap: wrap;
    gap: 0.7rem;
    margin-top: 1.5rem;
}

.contact-socials a {
    height: 2.8rem;
    transition: transform 0.2s ease, background 0.2s ease;
    width: 2.8rem;
}

.contact-socials a:hover,
.contact-socials a:focus {
    background: var(--pb-accent);
    color: #fff;
    transform: translateY(-2px);
}

.contact-socials svg {
    height: 1.2rem;
    width: 1.2rem;
}

.contact-socials svg * {
    fill: currentColor;
}

.contact-form label {
    color: var(--pb-ink);
    display: block;
    font-size: 0.84rem;
    font-weight: 800;
    margin-bottom: 0.45rem;
}

.contact-form label > span:first-of-type,
.contact-form label:not(.contact-consent) span {
    color: #b43b3b;
}

.contact-form input:not([type="checkbox"]),
.contact-form textarea {
    background: #f8fbff;
    border: 1px solid rgba(27, 103, 176, 0.16);
    border-radius: 0.9rem;
    color: var(--pb-ink);
    outline: none;
    padding: 0.85rem 1rem;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    width: 100%;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: var(--pb-primary);
    box-shadow: 0 0 0 0.22rem rgba(27, 103, 176, 0.12);
}

.contact-form textarea {
    min-height: 10rem;
    resize: vertical;
}

.contact-consent {
    align-items: flex-start;
    display: flex !important;
    gap: 0.7rem;
    line-height: 1.5;
}

.contact-consent input {
    accent-color: var(--pb-primary);
    flex: 0 0 auto;
    margin-top: 0.25rem;
}

.contact-submit {
    background: var(--pb-primary);
    border: 0;
    border-radius: 999px;
    color: #fff;
    font-weight: 800;
    padding: 0.9rem 1.5rem;
}

.contact-submit:hover,
.contact-submit:focus {
    background: var(--pb-primary-deep);
}

.contact-honeypot {
    height: 0;
    left: -9999px;
    overflow: hidden;
    position: absolute;
    width: 0;
}

/* Accessible gallery and media lightbox. */
.profile-gallery-grid img[role="button"],
.profile-media-image-grid img[role="button"],
.profile-image-mosaic img[role="button"] {
    cursor: zoom-in;
}

.profile-gallery-grid img[role="button"]:focus-visible,
.profile-media-image-grid img[role="button"]:focus-visible,
.profile-image-mosaic img[role="button"]:focus-visible {
    outline: 0.25rem solid var(--pb-accent);
    outline-offset: 0.2rem;
}

body.has-media-lightbox {
    overflow: hidden;
}

.media-lightbox {
    align-items: center;
    background: rgba(3, 13, 25, 0.92);
    display: flex;
    inset: 0;
    justify-content: center;
    opacity: 0;
    padding: clamp(1rem, 4vw, 3rem);
    pointer-events: none;
    position: fixed;
    transition: opacity 0.25s ease;
    visibility: hidden;
    z-index: 10000;
}

.media-lightbox.is-open {
    opacity: 1;
    pointer-events: auto;
    visibility: visible;
}

.media-lightbox-dialog {
    align-items: center;
    display: flex;
    flex-direction: column;
    max-height: 100%;
    max-width: min(94vw, 92rem);
    position: relative;
}

.media-lightbox-image {
    background: #fff;
    border-radius: 0.8rem;
    box-shadow: 0 1.5rem 5rem rgba(0, 0, 0, 0.4);
    display: block;
    max-height: 82vh;
    max-width: 100%;
    object-fit: contain;
}

.media-lightbox-close {
    align-items: center;
    background: #fff;
    border: 0;
    border-radius: 999px;
    color: #07101c;
    display: inline-flex;
    font-size: 2rem;
    height: 2.8rem;
    justify-content: center;
    line-height: 1;
    position: absolute;
    right: -0.8rem;
    top: -0.8rem;
    width: 2.8rem;
    z-index: 1;
}

.media-lightbox-caption {
    color: #fff;
    margin: 0.8rem 0 0;
    max-width: 60rem;
    text-align: center;
}

@media (max-width: 575.98px) {
    .contact-hero-panel,
    .contact-info-panel,
    .contact-form-panel {
        border-radius: 1.2rem;
        padding: 1.25rem;
    }

    .contact-page-title {
        font-size: clamp(2.7rem, 15vw, 4rem);
    }

    .contact-email-card {
        align-items: flex-start;
    }

    .media-lightbox {
        padding: 0.75rem;
    }

    .media-lightbox-close {
        right: 0.35rem;
        top: 0.35rem;
    }
}

/* Managed Awards and hierarchical Accolades. */
.managed-collection-section {
    padding: 1rem 0 5rem;
}

.managed-collection-grid {
    display: grid;
    gap: 1.4rem;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.managed-collection-card {
    min-width: 0;
}

.managed-collection-card-link {
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid rgba(27, 103, 176, 0.12);
    border-radius: 1.4rem;
    box-shadow: 0 1rem 2.8rem rgba(22, 54, 95, 0.09);
    color: var(--pb-ink);
    display: flex;
    flex-direction: column;
    height: 100%;
    overflow: hidden;
    text-decoration: none;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.managed-collection-card-link:hover,
.managed-collection-card-link:focus {
    color: var(--pb-ink);
    box-shadow: 0 1.4rem 3.4rem rgba(22, 54, 95, 0.15);
    transform: translateY(-0.3rem);
}

.managed-collection-cover {
    align-items: center;
    aspect-ratio: 4 / 3;
    background: linear-gradient(135deg, #edf5fd, #fff7eb);
    display: flex;
    justify-content: center;
    overflow: hidden;
}

.managed-collection-cover img {
    height: 100%;
    object-fit: contain;
    width: 100%;
}

.managed-collection-placeholder {
    color: var(--pb-primary-deep);
    font-family: var(--pb-font-display);
    font-size: clamp(2rem, 4vw, 3.4rem);
}

.managed-collection-card-body {
    display: flex;
    flex: 1;
    flex-direction: column;
    padding: 1.25rem;
}

.managed-collection-card-body > strong {
    display: block;
    font-family: var(--pb-font-display);
    font-size: clamp(1.35rem, 2vw, 1.75rem);
    line-height: 1.08;
    margin: 0.45rem 0 0.7rem;
}

.managed-collection-summary,
.managed-collection-meta {
    color: #587087;
    display: block;
    font-size: 0.9rem;
    line-height: 1.55;
}

.managed-collection-open {
    color: var(--pb-primary);
    display: block;
    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: 0.1em;
    margin-top: auto;
    padding-top: 1rem;
    text-transform: uppercase;
}

.managed-collection-description {
    margin-bottom: 2rem;
    max-width: none;
}

.managed-collection-heading {
    margin: 2.5rem 0 1.25rem;
}

.collection-image-grid {
    display: grid;
    gap: 1rem;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.collection-image-grid figure {
    align-items: center;
    background: #f4efe6;
    border: 0.5rem solid #fff;
    border-radius: 1.15rem;
    box-shadow: 0 0.8rem 2.2rem rgba(22, 54, 95, 0.1);
    display: flex;
    justify-content: center;
    margin: 0;
    min-width: 0;
    overflow: hidden;
}

.collection-image-grid img {
    cursor: zoom-in;
    display: block;
    height: auto;
    max-height: 38rem;
    object-fit: contain;
    width: 100%;
}

.collection-image-grid img:focus-visible {
    outline: 0.25rem solid var(--pb-accent);
    outline-offset: -0.25rem;
}

.managed-album-breadcrumb {
    flex-wrap: wrap;
}

@media (max-width: 991.98px) {
    .managed-collection-grid,
    .collection-image-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 575.98px) {
    .managed-collection-grid,
    .collection-image-grid {
        grid-template-columns: minmax(0, 1fr);
    }

    .managed-collection-section {
        padding-bottom: 3.5rem;
    }
}

/*
 * Site image policy: show complete images without crop or decorative overlap.
 * Keep these rules late in the file so page-specific image frames inherit them.
 */
.hero-slider-shell {
    padding: 0.65rem;
}

.hero-slide {
    min-height: 0;
    padding: 0;
}

.hero-visual-shell {
    align-items: center;
    aspect-ratio: auto;
    background: #f4efe6;
    border-radius: 1.1rem;
    box-shadow: none;
    display: flex;
    justify-content: center;
    min-height: 0;
    overflow: hidden;
}

.hero-slide-image {
    display: block;
    height: 100%;
    max-height: 100%;
    max-width: none;
    object-fit: fill;
    width: 100%;
}

.home-hero-visual,
.about-portrait-stage {
    display: grid;
    gap: 1rem;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    min-height: 0;
}

.home-hero-main,
.home-hero-float,
.about-portrait-card,
.about-portrait-1,
.about-portrait-2,
.about-portrait-3 {
    bottom: auto;
    height: auto;
    left: auto;
    position: relative;
    right: auto;
    top: auto;
    transform: none;
    width: 100%;
}

.home-hero-main,
.home-hero-float,
.about-portrait-card img {
    aspect-ratio: 4 / 3;
}

.home-hero-main,
.home-hero-float {
    background: #f4efe6;
    object-fit: contain;
}

.about-portrait-card {
    align-self: start;
}

.about-portrait-card img,
.home-news-thumb img,
.insight-thumb img,
.single-hero-thumb img,
.lux-news-thumb img,
.signature-news-thumb img,
.profile-image-mosaic img,
.profile-gallery-grid img,
.profile-card-image,
.page-accolades .profile-card-image,
.profile-album-cover img,
.profile-media-image-grid img {
    background: #f4efe6;
    height: auto;
    max-height: none;
    object-fit: contain;
    transform: none;
    width: 100%;
}

.home-news-thumb,
.insight-thumb,
.single-hero-thumb,
.lux-news-thumb,
.signature-news-thumb,
.profile-card-media,
.profile-album-cover,
.profile-media-image-grid figure,
.profile-image-mosaic figure,
.profile-gallery-grid figure,
.about-portrait-card {
    overflow: visible;
}

.home-news-card:hover .home-news-thumb img,
.profile-album-card:hover .profile-album-cover img,
.profile-album-card:focus .profile-album-cover img,
.profile-media-image-grid figure:hover img,
.lux-news-card:hover .lux-news-thumb img,
.signature-news-card:hover .signature-news-thumb img {
    transform: none;
}

.page-awards-achievements-felicitations .profile-card-body {
    margin: 1rem 0 0;
}

.profile-image-mosaic figure,
.profile-image-mosaic figure:nth-child(1),
.profile-image-mosaic figure:nth-child(2),
.profile-image-mosaic figure:nth-child(n+3) {
    grid-column: span 2;
}

@media (max-width: 991.98px) {
    .home-hero-visual,
    .about-portrait-stage {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

}

@media (max-width: 767.98px) {
    .home-hero-visual,
    .about-portrait-stage {
        grid-template-columns: 1fr;
    }

    .profile-image-mosaic figure,
    .profile-image-mosaic figure:nth-child(1),
    .profile-image-mosaic figure:nth-child(2),
    .profile-image-mosaic figure:nth-child(n+3) {
        grid-column: auto;
    }
}

/* Final override: never crop website photos inside designed frames. */
.hero-visual-shell,
.home-hero-visual,
.home-news-thumb,
.insight-thumb,
.single-hero-thumb,
.lux-news-thumb,
.signature-news-thumb,
.profile-card-media,
.profile-album-cover,
.profile-image-mosaic figure,
.profile-gallery-grid figure,
.profile-media-image-grid figure,
.about-portrait-card,
.about-portrait-stage {
    overflow: visible !important;
}

.hero-slide-image,
.home-hero-main,
.home-hero-float,
.home-news-thumb img,
.insight-thumb img,
.single-hero-thumb img,
.lux-news-thumb img,
.signature-news-thumb img,
.profile-image-mosaic img,
.profile-gallery-grid img,
.profile-card-image,
.page-accolades .profile-card-image,
.profile-album-cover img,
.profile-media-image-grid img,
.about-portrait-card img,
.daily-quote-image {
    object-fit: contain !important;
    object-position: center center !important;
    transform: none !important;
}

.hero-slider-shell {
    padding: 1rem !important;
}

.hero-slide {
    min-height: 0 !important;
    padding: 0 !important;
}

.hero-visual-shell {
    aspect-ratio: auto !important;
    min-height: clamp(260px, 32vw, 520px) !important;
    overflow: hidden !important;
}

.hero-slide-image {
    height: 100% !important;
    object-fit: fill !important;
    width: 100% !important;
}

.hero-slide-video {
    height: 100% !important;
    min-height: clamp(260px, 32vw, 520px) !important;
    object-fit: cover !important;
    width: 100% !important;
}

.daily-quote-image {
    background: transparent !important;
}

.page-karulkar-pratishthan .profile-image-mosaic {
    column-count: 3 !important;
    column-gap: 1rem !important;
    display: block !important;
}

.page-karulkar-pratishthan .profile-image-mosaic figure,
.page-karulkar-pratishthan .profile-image-mosaic figure:nth-child(1),
.page-karulkar-pratishthan .profile-image-mosaic figure:nth-child(2),
.page-karulkar-pratishthan .profile-image-mosaic figure:nth-child(n+3) {
    break-inside: avoid !important;
    display: block !important;
    grid-column: auto !important;
    margin: 0 0 1rem !important;
    overflow: hidden !important;
}

.page-karulkar-pratishthan .profile-image-mosaic img {
    aspect-ratio: auto !important;
    background: transparent !important;
    height: auto !important;
    object-fit: contain !important;
    width: 100% !important;
}

.pratishthan-hero-logo-panel {
    background: #fff !important;
    margin-left: auto !important;
    max-width: 31rem !important;
    padding: 1.25rem !important;
}

.pratishthan-hero-logo-panel img {
    background: transparent !important;
    height: auto !important;
    max-height: 15rem !important;
    object-fit: contain !important;
    width: 100% !important;
}

@media (max-width: 991.98px) {
    .page-karulkar-pratishthan .profile-image-mosaic {
        column-count: 2 !important;
    }

    .pratishthan-hero-logo-panel {
        margin: 0 !important;
        max-width: 26rem !important;
    }
}

@media (max-width: 575.98px) {
    .page-karulkar-pratishthan .profile-image-mosaic {
        column-count: 1 !important;
    }
}

.home-news-thumb img,
.insight-thumb img,
.single-hero-thumb img,
.lux-news-thumb img,
.signature-news-thumb img,
.profile-card-image,
.page-accolades .profile-card-image,
.profile-album-cover img,
.profile-media-image-grid img,
.profile-gallery-grid img,
.profile-image-mosaic img,
.about-portrait-card img {
    background: #f4efe6 !important;
    height: auto !important;
    max-height: none !important;
    width: 100% !important;
}

/* Final Felicitations reset: normal readable bullets, no card/grid layout. */
#top-felicitations .felicitation-list {
    display: block !important;
    list-style: disc outside !important;
    margin: 0 !important;
    max-width: none !important;
    padding-left: 1.4rem !important;
}

#top-felicitations .felicitation-list li {
    background: transparent !important;
    border: 0 !important;
    border-radius: 0 !important;
    color: var(--pb-ink) !important;
    display: list-item !important;
    grid-template-columns: none !important;
    line-height: 1.65 !important;
    margin: 0 !important;
    overflow-wrap: normal !important;
    padding: 0 !important;
    white-space: normal !important;
    width: auto !important;
    word-break: normal !important;
}

#top-felicitations .felicitation-list li + li {
    margin-top: 0.75rem !important;
}

#top-felicitations .felicitation-list li::marker {
    color: var(--pb-accent) !important;
    font-size: 1.05rem !important;
}

@media (min-width: 1200px) {
    #top-felicitations,
    #achievements-panel {
        height: 100%;
    }

    #top-felicitations .felicitation-list li {
        font-size: 0.88rem !important;
        line-height: 1.45 !important;
    }
}

/* Creative, non-overlapping homepage profile image grid. */
.home-premium-hero .home-hero-visual {
    background:
        radial-gradient(circle at 14% 18%, rgba(216, 156, 74, 0.18), transparent 30%),
        radial-gradient(circle at 92% 82%, rgba(27, 103, 176, 0.16), transparent 34%),
        rgba(255, 255, 255, 0.46);
    border: 1px solid rgba(27, 103, 176, 0.1);
    border-radius: 1.6rem;
    display: grid !important;
    gap: 1rem;
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.9fr);
    grid-template-rows: repeat(2, minmax(10rem, 1fr));
    min-height: 24rem;
    padding: 1rem;
    position: relative;
}

.home-premium-hero .home-hero-main,
.home-premium-hero .home-hero-float {
    align-self: stretch;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(246, 240, 225, 0.76)),
        #f4efe6;
    border: 0.55rem solid rgba(255, 255, 255, 0.92);
    border-radius: 1.2rem;
    box-shadow: 0 1rem 2.2rem rgba(22, 54, 95, 0.12);
    height: 100% !important;
    justify-self: stretch;
    min-height: 0;
    object-fit: contain !important;
    position: relative !important;
    transform: none !important;
    width: 100% !important;
}

.home-premium-hero .home-hero-main {
    grid-column: 1;
    grid-row: 1 / span 2;
}

.home-premium-hero .home-hero-float-a {
    grid-column: 2;
    grid-row: 1;
}

.home-premium-hero .home-hero-float-b {
    grid-column: 2;
    grid-row: 2;
}

@media (max-width: 1199.98px) {
    .home-premium-hero .home-hero-visual {
        grid-template-rows: repeat(2, minmax(9rem, 1fr));
        min-height: 20rem;
    }
}

@media (max-width: 767.98px) {
    .home-premium-hero .home-hero-visual {
        grid-template-columns: 1fr;
        grid-template-rows: none;
        min-height: 0;
    }

    .home-premium-hero .home-hero-main,
    .home-premium-hero .home-hero-float-a,
    .home-premium-hero .home-hero-float-b {
        grid-column: auto;
        grid-row: auto;
        height: auto !important;
    }
}

/* Creative non-overlapping identity image panel. */
.about-creative-shell .about-portrait-stage {
    background:
        radial-gradient(circle at 16% 18%, rgba(216, 156, 74, 0.22), transparent 30%),
        radial-gradient(circle at 86% 76%, rgba(27, 103, 176, 0.16), transparent 34%),
        rgba(255, 255, 255, 0.5);
    border: 1px solid rgba(27, 103, 176, 0.1);
    border-radius: 1.5rem;
    display: grid !important;
    gap: 1rem;
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
    grid-template-rows: repeat(2, minmax(12rem, 1fr));
    min-height: 30rem;
    padding: 1rem;
    position: relative !important;
}

.about-creative-shell .about-portrait-card {
    align-self: stretch;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(246, 240, 225, 0.74)),
        #f4efe6;
    border: 0.6rem solid rgba(255, 255, 255, 0.94);
    border-radius: 1.25rem;
    box-shadow: 0 1.1rem 2.4rem rgba(22, 54, 95, 0.13);
    height: 100% !important;
    justify-self: stretch;
    left: auto !important;
    margin: 0 !important;
    min-height: 0;
    overflow: hidden !important;
    padding: 0 !important;
    position: relative !important;
    right: auto !important;
    top: auto !important;
    transform: none !important;
    width: 100% !important;
}

.about-creative-shell .about-portrait-card img {
    background: #f4efe6 !important;
    border-radius: 0.85rem;
    display: block;
    height: 100% !important;
    object-fit: contain !important;
    object-position: center center !important;
    width: 100% !important;
}

.about-creative-shell .about-portrait-1 {
    grid-column: 1;
    grid-row: 1 / span 2;
}

.about-creative-shell .about-portrait-2 {
    grid-column: 2;
    grid-row: 1;
}

.about-creative-shell .about-portrait-3 {
    grid-column: 2;
    grid-row: 2;
}

@media (max-width: 991.98px) {
    .about-creative-shell .about-portrait-stage {
        grid-template-rows: repeat(2, minmax(10rem, 1fr));
        min-height: 24rem;
    }
}

@media (max-width: 767.98px) {
    .about-creative-shell .about-portrait-stage {
        grid-template-columns: 1fr;
        grid-template-rows: none;
        min-height: 0;
    }

    .about-creative-shell .about-portrait-1,
    .about-creative-shell .about-portrait-2,
    .about-creative-shell .about-portrait-3 {
        grid-column: auto;
        grid-row: auto;
        height: auto !important;
    }

    .about-creative-shell .about-portrait-card img {
        aspect-ratio: 4 / 3;
        height: auto !important;
    }
}

/* Mobile card readability fix: keep profile/media/album cards from squeezing into narrow columns. */
@media (max-width: 767.98px) {
    .home-news-grid,
    .profile-album-index,
    .profile-video-album-index,
    .profile-media-post-grid,
    .profile-gallery-grid,
    .profile-media-image-grid,
    .managed-collection-grid,
    .collection-image-grid {
        grid-template-columns: minmax(0, 1fr) !important;
    }

    .home-news-card,
    .profile-feature-card,
    .profile-video-card,
    .profile-album-card,
    .profile-media-post-card,
    .managed-collection-card,
    .managed-collection-card-link {
        min-width: 0;
        width: 100%;
    }

    .home-news-body,
    .profile-card-body,
    .profile-album-body,
    .managed-collection-card-body {
        padding: 1rem;
    }

    .home-news-title,
    .profile-card-title,
    .profile-section-title,
    .profile-album-body strong,
    .managed-collection-card-body > strong {
        overflow-wrap: anywhere;
        word-break: normal;
    }
}
