/* About Page Styles */
.about-hero {
    width: 100%;
    margin-bottom: 50px;
}

.about-hero-img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.about-content {
    padding: 16px 0 96px;
}

.about-grid {
    display: grid;
    grid-template-columns: minmax(0, 2fr) minmax(260px, 0.8fr);
    gap: clamp(48px, 8vw, 112px);
    align-items: start;
}

.about-text-column {
    min-width: 0;
}

/* Typography */
.about-text-column h2 {
    font-size: clamp(28px, 3vw, 40px);
    font-weight: 400;
    letter-spacing: -0.04em;
    line-height: 1.05;
    text-transform: uppercase;
    margin-bottom: 24px;
    color: #333;
}

.text-block {
    margin-bottom: 52px;
}

.text-block p {
    margin-bottom: 18px;
    font-size: clamp(16px, 1.4vw, 18px);
    line-height: 1.8;
    color: #575757;
}

.about-rich-content h3 {
    color: #333;
    font-size: clamp(22px, 2.4vw, 30px);
    font-weight: 500;
    letter-spacing: -0.03em;
    line-height: 1.15;
    margin: 40px 0 20px;
    text-transform: uppercase;
}

.about-rich-content blockquote {
    margin: 32px 0 0;
    padding: 24px 28px;
    background: #f6f6f6;
    color: #575757;
    font-size: clamp(13px, 1.1vw, 15px);
    font-style: italic;
    line-height: 1.45;
}

.about-rich-content blockquote p:last-child {
    margin-bottom: 0;
}

.about-rich-content blockquote p {
    font-size: inherit;
    font-style: inherit;
    line-height: inherit;
}

.about-rich-content a {
    color: var(--highlight-color);
    font-weight: 800;
    text-decoration: none;
}

.about-rich-content a:hover {
    color: #d94f00;
}

.rich-text-highlight--orange,
.rich-text-color--orange {
    color: var(--highlight-color);
}

.rich-text-highlight--blue,
.rich-text-color--blue {
    color: #1d4ed8;
}

.rich-text-color--black { color: #344258; }
.rich-text-color--green { color: #15803d; }
.rich-text-color--red { color: #dc2626; }
.rich-text-color--purple { color: #7e22ce; }
.rich-text-color--default { color: #575757; }

.rich-text-background--yellow,
.enrollment-details .text-yellow,
.enrollment-intro .text-yellow {
    background-color: transparent;
    background-image: linear-gradient(var(--marker-yellow), var(--marker-yellow));
    background-position: left center;
    background-repeat: no-repeat;
    background-size: 0 100%;
    animation: public-marker-sweep 850ms cubic-bezier(0.25, 0.46, 0.45, 0.94) 250ms forwards;
    -webkit-box-decoration-break: clone;
    box-decoration-break: clone;
}
.rich-text-background--orange { background-color: #fed7aa; }
.rich-text-background--blue { background-color: #bfdbfe; }
.rich-text-background--green { background-color: #bbf7d0; }
.rich-text-background--pink { background-color: #fbcfe8; }
.rich-text-background--default { background-color: transparent; }

.rich-text-size--small {
    font-size: .85rem;
}

.rich-text-size--normal { font-size: 1rem; }
.rich-text-size--medium { font-size: 1.15rem; }
.rich-text-size--large,
.rich-text-size--h3 { font-size: 1.6rem; line-height: 1.2; }
.rich-text-size--h2 { font-size: 2rem; line-height: 1.15; }
.rich-text-size--h1 { font-size: 2.5rem; line-height: 1.1; }

.public-last-word-title strong {
    font-weight: 800;
}

@keyframes public-marker-sweep {
    from { background-size: 0 100%; }
    to { background-size: 100% 100%; }
}

@media (prefers-reduced-motion: reduce) {
    .rich-text-background--yellow,
    .enrollment-details .text-yellow,
    .enrollment-intro .text-yellow {
        animation: none;
        background-size: 100% 100%;
    }
}

/* Testimonials */
.testimonials {
    margin-top: 72px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.testimonials-heading {
    margin-bottom: 12px;
}

.testimonials-heading .eyebrow {
    margin-bottom: 8px;
    color: var(--highlight-color);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.12em;
}

.testimonial-card {
    display: flex;
    gap: 24px;
    background: #fff;
    padding: 28px;
    border: 1px solid #e3e5e8;
    border-radius: 16px;
    align-items: flex-start;
    box-shadow: 0 10px 28px rgba(31, 42, 55, 0.05);
}

.testimonial-avatar {
    width: 84px;
    height: 84px;
    flex: 0 0 84px;
    border-radius: 50%;
    overflow: hidden;
    background: #f1f3f5;
}

.testimonial-avatar img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-content h3 {
    font-size: 18px;
    line-height: 1.25;
    text-transform: uppercase;
    margin-bottom: 6px;
    color: #000;
}

.testimonial-location {
    margin: 0 0 16px;
    font-size: 12px;
    color: #888;
    font-weight: 600;
}

.testimonial-content blockquote {
    margin: 0;
}

.testimonial-content blockquote p {
    font-size: 15px;
    line-height: 1.7;
    font-style: italic;
    color: #666;
}

@media (prefers-reduced-motion: no-preference) {
    .testimonial-card {
        transition: transform 180ms ease, box-shadow 180ms ease;
    }

    .testimonial-card:hover {
        transform: translateY(-2px);
        box-shadow: 0 16px 34px rgba(31, 42, 55, 0.09);
    }
}

/* Sidebar */
.sidebar-widget {
    margin-bottom: 40px;
}

.sidebar-widget h3 {
    font-size: 18px;
    text-transform: uppercase;
    font-weight: 800;
    margin-bottom: 20px;
    border-bottom: 2px solid #ccc;
    padding-bottom: 10px;
}

.news-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.news-item {
    display: flex;
    gap: 15px;
    align-items: center;
}

.news-thumb img {
    width: 80px;
    height: 60px;
    object-fit: cover;
    border-radius: 4px;
}

.news-info p {
    font-size: 13px;
    line-height: 1.4;
    font-weight: 600;
    color: #333;
}

.news-item:hover .news-info p {
    color: var(--highlight-color);
}

.highlight-image img {
    width: 100%;
    border-radius: 5px;
}

.public-sidebar-notice__body {
    color: #4b5563;
    font-size: 14px;
    line-height: 1.65;
}

.public-sidebar-notice__body p {
    margin: 0 0 12px;
}

.public-sidebar-notice__body p:last-child {
    margin-bottom: 0;
}

.public-sidebar-banners {
    display: grid;
    gap: 20px;
}

.public-sidebar-banners picture,
.public-sidebar-banners a {
    display: block;
}

/* Responsive About */
@media (max-width: 768px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .testimonial-card {
        padding: 24px;
        flex-direction: column;
        text-align: center;
        align-items: center;
    }

    .testimonial-location {
        margin-bottom: 14px;
    }
}

/* Eventos Page */
.events-column h2 {
    font-size: clamp(28px, 3vw, 40px);
    font-weight: 400;
    letter-spacing: -0.04em;
    line-height: 1.05;
    text-transform: uppercase;
    margin-bottom: 12px;
    color: #333;
}

.events-column h2 strong {
    font-weight: 800;
}

.events-summary {
    margin: 0 0 32px;
    color: #7a7f87;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.events-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-bottom: 44px;
}

.event-card {
    overflow: hidden;
    background: #fff;
    border: 1px solid #e3e5e8;
    border-radius: 14px;
    box-shadow: 0 8px 24px rgba(31, 42, 55, 0.05);
    display: block;
}

@media (prefers-reduced-motion: no-preference) {
    .event-card {
        transition: transform 180ms ease, box-shadow 180ms ease;
    }

    .event-card:hover {
        transform: translateY(-3px);
        box-shadow: 0 16px 34px rgba(31, 42, 55, 0.1);
    }
}

.event-image {
    width: 100%;
    aspect-ratio: 600 / 500;
    height: auto;
    object-fit: cover;
    margin: 0;
    display: block;
}

.event-details {
    padding: 20px;
}

.event-label {
    font-size: 10px;
    text-transform: uppercase;
    color: #888;
    margin-bottom: 8px;
    display: block;
    font-weight: 700;
}

.event-title {
    font-size: 18px;
    line-height: 1.25;
    text-transform: uppercase;
    font-weight: 800;
    margin-bottom: 10px;
    color: #000;
}

.event-meta {
    font-size: 12px;
    line-height: 1.6;
    color: #666;
    text-transform: uppercase;
}

.pagination {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 8px;
}

.page-btn {
    align-items: center;
    min-width: 38px;
    box-sizing: border-box;
    display: inline-flex;
    justify-content: center;
    line-height: 1;
    min-height: 38px;
    padding: 9px 12px;
    background: #f2f3f5;
    border-radius: 8px;
    color: #4a4f57;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
}

.page-btn.active {
    background: var(--highlight-color);
    color: #fff;
}

.page-btn--navigation {
    padding-inline: 14px;
}

.page-btn.is-disabled {
    cursor: not-allowed;
    opacity: 0.45;
}

.pagination-ellipsis {
    display: inline-grid;
    min-width: 30px;
    place-items: center;
    color: #737983;
}

@media (max-width: 768px) {
    .events-grid {
        grid-template-columns: 1fr;
    }
}

/* Artigos Page */
.articles-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 44px;
}

.articles-summary {
    margin: 0 0 28px;
    color: #737983;
    font-size: 13px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.articles-list .article-card {
    display: grid;
    grid-template-columns: minmax(220px, 34%) minmax(0, 1fr);
    overflow: hidden;
    margin: 0;
    color: inherit;
    text-decoration: none;
    background: #fff;
    border: 1px solid #e1e5ea;
    border-radius: 14px;
    box-shadow: 0 8px 22px rgba(27, 40, 56, 0.06);
    transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.articles-list .article-card:hover,
.articles-list .article-card:focus-visible {
    border-color: rgba(255, 99, 20, 0.55);
    box-shadow: 0 14px 30px rgba(27, 40, 56, 0.12);
    transform: translateY(-2px);
}

.articles-list .article-card:focus-visible {
    outline: 3px solid rgba(255, 99, 20, 0.35);
    outline-offset: 3px;
}

.articles-list .article-thumb {
    min-height: 220px;
    margin: 0;
    overflow: hidden;
    background: #f4f5f7;
}

.articles-list .article-thumb img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.articles-list .article-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-width: 0;
    padding: 26px;
}

.articles-list .article-category {
    font-size: 10px;
    font-weight: 700;
    color: #737983;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 8px;
    display: block;
}

.articles-list .article-title {
    margin: 0;
    color: #252d3a;
    font-size: clamp(20px, 2vw, 28px);
    font-weight: 800;
    letter-spacing: -0.025em;
    overflow-wrap: anywhere;
    text-transform: uppercase;
    line-height: 1.2;
}

.articles-list .article-excerpt {
    margin: 14px 0 0;
    color: #586171;
    font-size: 15px;
    line-height: 1.6;
}

.articles-list .article-content .created {
    margin: 18px 0 0;
    color: #737983;
    font-size: 11px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    font-weight: 600;
}

@media (max-width: 768px) {
    .articles-list .article-card {
        grid-template-columns: 1fr;
    }

    .articles-list .article-thumb {
        min-height: 0;
        aspect-ratio: 16 / 9;
    }

    .articles-list .article-content {
        padding: 22px;
    }
}

/* Parceiros Page Specific */
.partners-page-container {
    padding: 64px 0 96px;
}

.partners-page-rows {
    display: flex;
    flex-direction: column;
    gap: 46px;
}

.partners-page-heading {
    max-width: 720px;
    margin: 0 auto 52px;
    text-align: center;
}

.partners-page-heading h2 {
    margin: 0;
    color: #252d3a;
    font-size: clamp(30px, 3vw, 42px);
    font-weight: 400;
    letter-spacing: -0.04em;
    text-transform: uppercase;
}

.partners-page-heading p {
    margin: 14px 0 0;
    color: #737983;
    font-size: 16px;
    line-height: 1.6;
}

.partners-page-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 16px;
}

.partners-page-grid--managed {
    display: flex;
    flex-wrap: wrap;
    justify-content: var(--partners-logo-justify, center);
}

.partners-page-grid--managed .partner-card {
    flex: 0 0 var(--partners-desktop-logo-card-width);
    max-width: var(--partners-desktop-logo-card-width);
}

.partner-category__title {
    margin: 0 0 18px;
    color: #252d3a;
    font-size: 18px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-align: center;
    text-transform: uppercase;
}

.partner-card {
    display: flex;
    min-height: 132px;
    align-items: center;
    justify-content: center;
    padding: 22px 12px;
}

.partner-card--master {
    min-height: 170px;
}

.partner-card--naming {
    min-height: 240px;
}

.partner-logo-link {
    display: grid;
    width: 100%;
    height: 100%;
    place-items: center;
    border-radius: 8px;
}

.partner-logo-link:focus-visible {
    outline: 3px solid rgba(255, 99, 20, 0.45);
    outline-offset: 4px;
}

.partner-card img {
    display: block;
    width: 100%;
    max-width: 190px;
    max-height: 78px;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.74;
    transition: filter 180ms ease, opacity 180ms ease, transform 180ms ease;
}

.partner-card--master img {
    max-width: 280px;
    max-height: 125px;
}

.partner-card--naming img {
    max-width: 440px;
    max-height: 170px;
}

.partner-logo-link:hover img,
.partner-logo-link:focus-visible img {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.03);
}

@media (max-width: 768px) {
    .partners-page-container {
        padding: 46px 0 72px;
    }

    .partners-page-heading {
        margin-bottom: 40px;
    }

    .partners-page-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px;
    }

    .partners-page-grid--managed {
        justify-content: var(--partners-logo-justify, center);
    }

    .partners-page-grid--managed .partner-card {
        flex-basis: var(--partners-mobile-logo-card-width);
        max-width: var(--partners-mobile-logo-card-width);
    }

    .partner-card,
    .partner-card--master {
        min-height: 112px;
        padding: 16px;
    }

    .partner-card--master img {
        max-height: 90px;
    }

    .partner-card--naming {
        min-height: 170px;
    }

    .partner-card--naming img {
        max-width: 320px;
        max-height: 125px;
    }
}

/* Contact Page Specific */
.contact-section {
    padding: 62px 0 96px;
    background: #fff;
}

.contact-grid {
    display: grid;
    grid-template-columns: minmax(0, 690px) minmax(260px, 330px);
    justify-content: space-between;
    gap: 64px;
    align-items: start;
}

.contact-panel {
    padding: 0;
    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
}

.contact-panel h1 {
    margin: 0 0 42px;
    color: #333;
    font-size: clamp(28px, 3vw, 40px);
    font-weight: 400;
    letter-spacing: -0.045em;
    line-height: 1.1;
    text-transform: uppercase;
}

.contact-intro {
    margin: 14px 0 30px;
    color: #647083;
    font-size: 16px;
    line-height: 1.6;
}

.contact-feedback {
    margin: 0 0 24px;
    padding: 14px 16px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.5;
}

.contact-feedback--success {
    color: #176b42;
    background: #eaf8f0;
}

.contact-feedback--error {
    color: #9d2525;
    background: #fff0f0;
}

.contact-form label {
    display: block;
    margin-bottom: 10px;
    color: #333;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0;
    text-transform: uppercase;
}

.contact-form label span {
    color: var(--highlight-color);
}

.contact-field {
    margin-bottom: 38px;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
    width: 100%;
    border: 0;
    border-bottom: 1px solid #c7c7c7;
    border-radius: 0;
    padding: 14px 8px 18px 0;
    margin-bottom: 25px;
    font-family: 'Sora', sans-serif;
    font-size: 16px;
    line-height: 1.4;
    outline: 3px solid transparent;
    outline-offset: 3px;
    transition: border-color 180ms ease;
    background: transparent;
    color: #111;
}

.contact-field input,
.contact-field textarea,
.contact-field select {
    margin-bottom: 0;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
    border-color: #000;
    box-shadow: none;
}

.contact-form input:focus-visible,
.contact-form textarea:focus-visible,
.contact-form select:focus-visible {
    outline-color: #ff6200;
}

.contact-form textarea {
    resize: vertical;
    min-height: 108px;
}

.contact-form small {
    display: block;
    margin-top: 7px;
    color: #737983;
    font-size: 11px;
    line-height: 1.45;
}

.contact-form button {
    min-width: 150px;
    border: 1px solid #000;
    border-radius: 0;
    padding: 15px 24px;
    color: #000;
    background-color: transparent;
    text-transform: uppercase;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.05em;
    cursor: pointer;
    transition: background-color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.contact-form button:hover,
.contact-form button:focus-visible {
    border-color: #000;
    background-color: #000;
    color: #fff;
    transform: translateY(-1px);
}

.contact-form button:focus-visible {
    outline: 3px solid rgba(255, 99, 20, 0.3);
    outline-offset: 3px;
}

.contact-info h2 {
    margin: 10px 0 14px;
    color: #333;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0;
    text-transform: uppercase;
}

.contact-info p {
    margin: 0 0 26px;
    color: #666;
    font-size: 17px;
    line-height: 1.6;
}

.contact-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 0;
    padding: 8px 0;
    border-radius: 0;
    text-decoration: none;
    color: #3f4a5a;
    font-size: 16px;
    font-weight: 700;
    transition: background-color 180ms ease, color 180ms ease;
}

.contact-item:hover,
.contact-item:focus-visible {
    color: #000;
    background: transparent;
}

.contact-item:focus-visible {
    outline: 3px solid rgba(255, 99, 20, 0.3);
    outline-offset: 2px;
}

.contact-item .ui-icon {
    width: 20px;
    height: 20px;
    flex: 0 0 20px;
}

@media (max-width: 768px) {
    .contact-section {
        padding: 42px 0 72px;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 52px;
    }

    .contact-form button {
        width: 100%;
    }
}

/* Enrollment Page Specific */
.enrollment-hero-section {
    width: 100%;
    margin-bottom: 50px;
}

.enrollment-hero-img {
    width: 100%;
    height: 400px;
    /* Or responsive */
    object-fit: cover;
    display: block;
}

.enrollment-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px 80px;
}

.enrollment-content h2,
.enrollment-main-content h2 {
    font-size: 48px;
    font-weight: 300;
    text-transform: uppercase;
    margin-bottom: 30px;
    line-height: 1.2;
}

.enrollment-content h2 strong,
.enrollment-main-content h2 strong {
    font-weight: 800;
}

.enrollment-content h3,
.enrollment-main-content h3 {
    font-size: 24px;
    font-weight: 500;
    text-transform: uppercase;
    margin-bottom: 20px;
    line-height: 1.2;
}

.enrollment-intro {
    font-size: 16px;
    color: #555;
    line-height: 1.6;
    margin-bottom: 30px;
    text-align: justify;
}

.enrollment-banner-img {
    width: 100%;
    height: auto;
    margin-bottom: 40px;
    display: block;
    border-radius: 8px;
    /* Optional rounded corners */
}

.enrollment-details {
    font-size: 16px;
    color: #555;
    line-height: 1.6;
    margin-bottom: 30px;
    text-align: justify;
}

.enrollment-rich-text > :first-child {
    margin-top: 0;
}

.enrollment-rich-text > :last-child {
    margin-bottom: 0;
}

.enrollment-rich-text p,
.enrollment-rich-text ul,
.enrollment-rich-text ol {
    margin: 0 0 18px;
}

.enrollment-rich-text h2,
.enrollment-rich-text h3,
.enrollment-rich-text h4 {
    color: #1e293b;
    font-weight: 700;
    text-transform: none;
}

.enrollment-rich-text h2 {
    font-size: 2rem;
    line-height: 1.15;
}

.enrollment-rich-text h3 {
    font-size: 1.6rem;
    line-height: 1.2;
}

.enrollment-rich-text h4 {
    font-size: 1.3rem;
    line-height: 1.25;
}

.enrollment-rich-text blockquote {
    background: #fff5ed;
    border-left: 4px solid #ff5d00;
    margin: 22px 0;
    padding: 18px 20px;
}

.enrollment-rich-text blockquote p {
    margin-bottom: 12px;
}

.enrollment-rich-text blockquote p:last-child {
    margin-bottom: 0;
}

.enrollment-rich-text a {
    color: #ff5d00;
    font-weight: 700;
    text-decoration: underline;
}

.enrollment-details .text-yellow,
.enrollment-intro .text-yellow {
    padding: 0 5px;
    font-weight: 800;
}

.enrollment-buttons {
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.enrollment-buttons > a {
    align-items: center;
    display: flex;
    font-size: 11px;
    justify-content: center;
    min-width: 0;
    padding-left: 10px;
    padding-right: 10px;
    text-align: center;
    white-space: nowrap;
}

.btn-green {
    background: #009900;
    color: #fff;
    padding: 15px 30px;
    text-transform: uppercase;
    font-weight: 800;
    font-size: 14px;
    border: none;
    text-decoration: none;
    transition: background 0.3s;
}

.btn-green:hover {
    background: #007700;
}

.btn-gray-outline {
    background: #fff;
    color: #555;
    border: 1px solid #999;
    padding: 15px 30px;
    text-transform: uppercase;
    font-weight: 600;
    /* Regular weight */
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s;
}

.btn-gray-outline:hover {
    border-color: #333;
    color: #333;
    background: #f9f9f9;
}

@media (max-width: 768px) {
    .enrollment-content h2,
    .enrollment-main-content h2 {
        font-size: 32px;
    }

    .enrollment-buttons {
        gap: 15px;
        grid-template-columns: 1fr;
        justify-items: center;
    }

    .enrollment-buttons > a {
        font-size: 14px;
    }

    .btn-green,
    .btn-gray-outline {
        width: 100%;
        text-align: center;
        max-width: 300px;
    }
}

/* Regulation Page Specific */
.regulation-content {
    padding: 80px 20px;
    max-width: 900px;
    margin: 0 auto;
}

.regulation-title {
    font-size: 48px;
    font-weight: 300;
    text-transform: uppercase;
    line-height: 1.1;
    color: #000;
    margin-bottom: 10px;
}

.regulation-title strong {
    font-weight: 800;
    display: block;
}

.regulation-subtitle {
    font-size: 14px;
    color: #666;
    margin-bottom: 60px;
}

.regulation-list {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-bottom: 60px;
}

.regulation-item h3 {
    font-size: 24px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 15px;
    color: #000;
}

.regulation-item h4 {
    font-size: 18px;
    font-weight: 500;
    text-transform: uppercase;
    margin-bottom: 15px;
    color: #000;
}

.regulation-item p {
    font-size: 16px;
    color: #333;
    line-height: 1.6;
    text-align: justify;
    margin-bottom: 10px;
}

.regulation-item ul {
    padding-left: 20px;
    margin-bottom: 20px;
}

.regulation-item ul li {
    font-size: 14px;
    color: #555;
    line-height: 1.6;
    margin-bottom: 10px;
    list-style: disc;
}

.regulation-item ol {
    padding-left: 20px;
    margin-bottom: 20px;
}

.regulation-item ol li {
    font-size: 14px;
    color: #555;
    line-height: 1.6;
    margin-bottom: 10px;
}

.regulation-meta {
    margin: 0 0 32px;
    color: #6f7c90;
    font-size: 13px;
    font-weight: 400;
    text-transform: uppercase;
}

.enrollment-size-guide {
    margin: 0 0 40px;
}

.enrollment-kit-delivery,
.enrollment-faq {
    margin: 0 0 48px;
}

.enrollment-kit-delivery__items {
    display: grid;
    gap: 18px;
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.enrollment-kit-delivery__items--with-sidebar {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.enrollment-kit-delivery__item {
    border: 1px solid #dedede;
    padding: 18px;
}

.enrollment-kit-delivery__item h4 {
    color: #ff5d00;
    font-size: 15px;
    font-weight: 800;
    line-height: 1.2;
    margin: 0 0 10px;
    text-transform: uppercase;
}

.enrollment-kit-delivery__item p {
    color: #3f3f3f;
    font-size: 13px;
    line-height: 1.4;
    margin: 0 0 5px;
}

.enrollment-kit-delivery__item p:last-child {
    margin-bottom: 0;
}

.enrollment-kit-delivery__location {
    color: #1e293b !important;
    font-weight: 700;
}

.enrollment-kit-delivery__address {
    margin-bottom: 1px !important;
}

.enrollment-kit-delivery__neighborhood {
    margin-bottom: 13px !important;
}

.enrollment-kit-delivery__date-time {
    line-height: 1.5 !important;
}

.enrollment-schedule {
    background: #f3f3f3;
    margin: 0 -20px 48px;
    padding: 35px 35px 52px;
}

.enrollment-schedule h3 {
    border-bottom: 2px solid #ff5d00;
    font-weight: 800;
    margin-bottom: 32px;
    padding-bottom: 14px;
}

.enrollment-faq h3 {
    border: 0;
    color: #ff5d00;
    font-size: 20px;
    font-weight: 600;
    margin: 64px 0 24px;
    padding: 0;
}

.enrollment-schedule__items {
    display: grid;
}

.enrollment-schedule__item {
    align-items: start;
    border-bottom: 1px solid #d5d5d5;
    display: grid;
    gap: 20px;
    grid-template-columns: 80px minmax(0, 1fr);
    padding: 17px 0;
}

.enrollment-schedule__item:first-child {
    padding-top: 0;
}

.enrollment-schedule__item:last-child {
    border-bottom: 0;
    padding-bottom: 0;
}

.enrollment-schedule__item time {
    color: #ff5d00;
    font-size: 19px;
    font-weight: 600;
    line-height: 1.15;
}

.enrollment-schedule__item p {
    color: #363636;
    font-size: 15px;
    line-height: 1.45;
    margin: 0;
}

.enrollment-faq__items {
    display: grid;
    gap: 14px;
}

.enrollment-faq__item {
    border: 1px solid #d8d8d8;
}

.enrollment-faq__item summary {
    align-items: center;
    background: #f3f3f3;
    cursor: pointer;
    display: flex;
    font-size: 15px;
    font-weight: 800;
    gap: 12px;
    list-style: none;
    min-height: 56px;
    padding: 11px 24px;
    text-transform: uppercase;
}

.enrollment-faq__item summary::-webkit-details-marker {
    display: none;
}

.enrollment-faq__item summary::before {
    border-bottom: 2px solid currentColor;
    border-right: 2px solid currentColor;
    color: #ff5d00;
    content: '';
    flex: 0 0 9px;
    height: 9px;
    transform: rotate(-45deg);
    transition: transform 180ms ease;
    width: 9px;
}

.enrollment-faq__item[open] summary::before {
    transform: rotate(45deg) translate(-2px, -2px);
}

.enrollment-faq__item > div {
    background: #fff;
    display: grid;
    grid-template-rows: 0fr;
    overflow: hidden;
    padding: 0 30px;
    transition: grid-template-rows 220ms ease, padding 220ms ease;
}

.enrollment-faq__item[open] > div {
    border-top: 1px solid #d8d8d8;
    grid-template-rows: 1fr;
    padding: 14px 24px;
}

.enrollment-faq__item p {
    color: #454545;
    font-size: 14px;
    min-height: 0;
    overflow: hidden;
    line-height: 1.6;
    margin: 0;
}

.enrollment-size-guide__intro {
    color: #555;
    line-height: 1.6;
    margin: 28px 0 20px;
}

.enrollment-size-guide__tables {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
    width: 100%;
}

.enrollment-size-guide__tables--with-sidebar {
    grid-template-columns: minmax(0, 1fr);
}

.enrollment-size-guide__table-wrap {
    min-width: 0;
    overflow-x: auto;
}

.enrollment-size-guide table {
    border-collapse: collapse;
    table-layout: fixed;
    text-align: left;
    width: 100%;
}

.enrollment-size-guide caption {
    caption-side: top;
    color: #111;
    font-size: 18px;
    font-weight: 800;
    padding: 0 0 10px;
    text-align: left;
    text-transform: uppercase;
}

.enrollment-size-guide th,
.enrollment-size-guide td {
    border: 1px solid #d8d8d8;
    overflow-wrap: anywhere;
    padding: 7px 10px;
}

.enrollment-size-guide thead th {
    background: #151515;
    color: #fff;
    font-size: 14px;
    white-space: nowrap;
}

.enrollment-size-guide tbody th {
    background: #f5f5f5;
}

@media (max-width: 600px) {
    .enrollment-kit-delivery__items,
    .enrollment-kit-delivery__items--with-sidebar {
        grid-template-columns: minmax(0, 1fr);
    }

    .enrollment-size-guide__tables {
        grid-template-columns: minmax(0, 1fr);
    }

    .enrollment-size-guide th,
    .enrollment-size-guide td {
        font-size: 14px;
        padding: 7px 8px;
    }

    .enrollment-size-guide thead th {
        font-size: 12px;
    }

    .enrollment-schedule {
        margin-left: -20px;
        margin-right: -20px;
        padding-bottom: 38px;
        padding-top: 38px;
    }

    .enrollment-schedule__item {
        gap: 8px;
        grid-template-columns: 1fr;
        padding: 16px 0;
    }

    .enrollment-schedule__item time {
        font-size: 18px;
    }

    .enrollment-schedule__item p {
        font-size: 14px;
    }

    .enrollment-faq__item summary {
        font-size: 14px;
        min-height: 52px;
        padding: 10px 18px;
    }

    .enrollment-faq__item > div {
        padding: 0 18px;
    }

    .enrollment-faq__item[open] > div {
        padding: 12px 18px;
    }
}

.enrollment-image-creator {
    background: #f8fafc;
    border: 1px solid #dfe6ee;
    box-sizing: border-box;
    border-radius: 12px;
    margin: 48px auto 0;
    max-width: 460px;
    padding: 32px;
    width: 100%;
}

.enrollment-content .enrollment-image-creator h3 {
    font-weight: 800;
    margin-bottom: 10px;
    text-transform: none;
}

.enrollment-image-creator__description {
    color: #555;
    line-height: 1.6;
    margin: 0 0 24px;
}

.enrollment-image-creator__tabs {
    display: grid;
    gap: 6px;
    grid-template-columns: repeat(auto-fit, minmax(110px, 1fr));
    margin-bottom: 20px;
}

.enrollment-image-creator__tabs button {
    background: #fff;
    border: 1px solid #d5dde7;
    color: #475569;
    cursor: pointer;
    font: inherit;
    font-size: 12px;
    font-weight: 750;
    min-height: 48px;
    padding: 8px 6px;
}

.enrollment-image-creator__tabs button[aria-selected='true'] {
    background: #ff5d00;
    border-color: #ff5d00;
    color: #fff;
}

.enrollment-image-creator__tabs button:focus-visible {
    outline: 3px solid rgba(255, 93, 0, 0.22);
    outline-offset: 2px;
}

.enrollment-image-creator__form {
    display: grid;
    gap: 14px;
}

.enrollment-image-creator__upload {
    align-items: center;
    background: #fff;
    border: 1px dashed #94a3b8;
    color: #1e293b;
    cursor: pointer;
    display: flex;
    font-weight: 700;
    justify-content: center;
    min-height: 112px;
    padding: 20px;
    text-align: center;
}

.enrollment-image-creator__upload:focus-within {
    border-color: #ff5d00;
    outline: 3px solid rgba(255, 93, 0, 0.18);
    outline-offset: 2px;
}

.enrollment-image-creator__upload input {
    block-size: 1px;
    clip-path: inset(50%);
    inline-size: 1px;
    overflow: hidden;
    position: absolute;
    white-space: nowrap;
}

.enrollment-image-creator__hint,
.enrollment-image-creator__success,
.enrollment-image-creator__error {
    font-size: 13px;
    line-height: 1.5;
    margin: 0;
}

.enrollment-image-creator__hint,
.enrollment-image-creator__success {
    color: #64748b;
}

.enrollment-image-creator__hint a {
    color: inherit;
    text-decoration: underline;
}

.enrollment-image-creator__error {
    color: #b42318;
    font-weight: 700;
}

.enrollment-image-creator__preview {
    display: grid;
    gap: 16px;
    justify-items: center;
    margin-top: 6px;
}

.enrollment-image-creator__preview[hidden] {
    display: none;
}

.enrollment-image-creator__preview img {
    aspect-ratio: var(--image-creator-aspect-ratio, 4 / 5);
    border-radius: 12px;
    cursor: grab;
    display: block;
    max-width: 100%;
    object-fit: cover;
    touch-action: none;
    user-select: none;
    width: min(420px, 100%);
}

.enrollment-image-creator--dragging .enrollment-image-creator__preview img {
    cursor: grabbing;
}

.enrollment-image-creator__drag-instruction {
    color: #64748b;
    font-size: 13px;
    line-height: 1.5;
    margin: 0;
}

.enrollment-image-creator__adjustments {
    border: 0;
    display: grid;
    gap: 14px;
    margin: 0;
    padding: 0;
    width: 100%;
}

.enrollment-image-creator__adjustments legend {
    color: #1e293b;
    font-size: 16px;
    font-weight: 800;
    margin-bottom: 4px;
}

.enrollment-image-creator__adjustments label {
    color: #475569;
    display: grid;
    font-size: 14px;
    font-weight: 700;
    gap: 8px;
}

.enrollment-image-creator__adjustments input[type='range'] {
    accent-color: #ff5d00;
    cursor: pointer;
    width: 100%;
}

.enrollment-image-creator__preview .btn-green {
    cursor: pointer;
}

@media (max-width: 768px) {
    .enrollment-image-creator {
        margin: 36px auto 0;
        padding: 24px 20px;
    }

    .enrollment-image-creator__preview .btn-green {
        max-width: none;
    }
}

.regulation-closing {
    padding: 24px 28px;
    border-left: 4px solid #ff5d00;
    background: #fff5ed;
}

.regulation-closing p {
    margin: 0;
    color: #222;
    font-size: 18px;
    font-weight: 750;
    line-height: 1.5;
    text-align: left;
}

.regulation-actions {
    padding-top: 36px;
    border-top: 1px solid #e4e8ee;
}

.regulation-actions a {
    min-width: 210px;
    border-radius: 0;
    text-align: center;
}

@media (max-width: 768px) {
    .regulation-title {
        font-size: 32px;
    }

    .regulation-content {
        padding: 40px 20px;
    }

    .regulation-list {
        gap: 30px;
        margin-bottom: 40px;
    }

    .regulation-item p {
        text-align: left;
    }

    .regulation-closing {
        padding: 20px;
    }
}

/* Evento Page Remake */
.event-top-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    margin-bottom: 50px;
}

.gallery-item img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
}

.event-description p {
    margin: 0 0 18px;
    color: #575757;
    font-size: clamp(16px, 1.4vw, 18px);
    line-height: 1.8;
}

.event-detail-section {
    padding: 28px clamp(24px, 5vw, 72px) 96px;
}

.event-detail-section .about-content {
    padding: 0;
}

.event-detail-title {
    margin: 0 0 28px;
    color: #24272c;
    font-size: clamp(30px, 3.5vw, 48px);
    font-weight: 800;
    letter-spacing: -0.045em;
    line-height: 1.05;
}

.event-information {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin: 0 0 30px;
}

.event-information > div {
    padding: 16px 18px;
    background: #f5f6f7;
    border-radius: 10px;
}

.event-information dt {
    margin-bottom: 5px;
    color: #7a7f87;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.08em;
}

.event-information dd {
    margin: 0;
    color: #34383f;
    font-size: 14px;
    font-weight: 700;
}

.photos-link {
    color: var(--highlight-color);
    font-weight: 700;
    word-break: break-all;
}

.event-featured-image {
    margin-top: 40px;
}

.event-featured-image iframe {
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: 4px;
}

.sidebar {
    padding-top: 20px;
}

/* Sidebar Remake Specifics */
.sidebar-widget .news-list {
    gap: 30px;
}

.sidebar-widget .news-item {
    align-items: flex-start;
}

.sidebar-widget .news-thumb img {
    display: block;
    width: 100%;
    height: 100%;
    border-radius: inherit;
    object-fit: cover;
}

.sidebar-widget .news-thumb {
    width: 80px;
    aspect-ratio: 1;
    flex: 0 0 80px;
    overflow: hidden;
    border-radius: 8px;
}

.sidebar-widget .news-info p {
    font-size: 14px;
    font-weight: 500;
    line-height: 1.4;
    margin: 0;
    color: #333;
}

.featured-card-vertical img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
}

/* Responsive */
@media (max-width: 768px) {
    .event-top-gallery {
        grid-template-columns: 1fr;
    }

    .gallery-item img {
        height: 300px;
    }

    .about-grid {
        gap: 40px;
    }
}

/* Content Gallery & Lightbox */
.content-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-bottom: 30px;
    margin-top: 30px;
}

.gallery-thumb img {
    width: 100%;
    aspect-ratio: 1;
    height: auto;
    object-fit: cover;
    border-radius: 4px;
    cursor: pointer;
    transition: 0.3s;
}

.gallery-thumb img:hover {
    opacity: 0.8;
}

/* The Modal (background) */
.modal {
    display: none;
    position: fixed;
    z-index: 10000;
    padding-top: 50px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.9);
}

/* Modal Content */
.modal-content {
    position: relative;
    background-color: #fefefe;
    margin: auto;
    padding: 0;
    width: 90%;
    max-width: min(900px, calc(100vw - 48px));
}

/* The Close Button */
.close {
    color: white;
    position: absolute;
    top: 10px;
    right: 25px;
    font-size: 35px;
    font-weight: bold;
}

.close:hover,
.close:focus {
    color: #999;
    text-decoration: none;
    cursor: pointer;
}

/* Hide the slides by default */
.mySlides {
    display: none;
}

.mySlides img {
    display: block;
    /* Removes bottom space */
}

.gallery-lightbox-image {
    width: 100%;
    max-height: calc(100vh - 100px);
    object-fit: contain;
}

/* Next & previous buttons */
.prev,
.next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    padding: 16px;
    margin-top: -50px;
    color: white;
    font-weight: bold;
    font-size: 20px;
    transition: 0.6s ease;
    border-radius: 0 3px 3px 0;
    user-select: none;
    -webkit-user-select: none;
    background-color: rgba(0, 0, 0, 0.3);
    /* Ensure visibility */
}

/* Position the "next button" to the right */
.next {
    right: 0;
    border-radius: 3px 0 0 3px;
}

/* On hover, add a black background color with a little bit see-through */
.prev:hover,
.next:hover {
    background-color: rgba(0, 0, 0, 0.8);
}

/* Number text (1/3 etc) */
.numbertext {
    color: #f2f2f2;
    font-size: 12px;
    padding: 8px 12px;
    position: absolute;
    top: 0;
}

.cursor {
    cursor: pointer;
}

/* Lightbox da galeria da página do evento. */
#myModal.modal {
    align-items: center;
    background: rgba(8, 12, 18, 0.88);
    backdrop-filter: blur(10px);
    display: none;
    inset: 0;
    justify-content: center;
    overflow: hidden;
    padding: clamp(18px, 4vw, 48px);
    position: fixed;
    z-index: 10000;
}

#myModal .modal-content {
    align-items: center;
    background: transparent;
    display: flex;
    justify-content: center;
    margin: 0;
    max-height: 100%;
    max-width: min(1120px, 100%);
    padding: 0;
    position: relative;
    width: 100%;
}

#myModal .mySlides {
    max-height: 100%;
    width: 100%;
}

#myModal .gallery-lightbox-image {
    border-radius: 12px;
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.45);
    display: block;
    margin: 0 auto;
    max-height: min(82vh, 880px);
    object-fit: contain;
    width: 100%;
}

#myModal .close,
#myModal .prev,
#myModal .next {
    align-items: center;
    background: rgba(15, 23, 42, 0.82);
    border: 1px solid rgba(255, 255, 255, 0.5);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.24);
    color: #fff;
    display: inline-flex;
    justify-content: center;
    line-height: 1;
    transition: background-color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

#myModal .close {
    border-radius: 50%;
    height: 48px;
    padding: 0;
    position: absolute;
    right: clamp(18px, 3vw, 42px);
    top: clamp(18px, 3vw, 34px);
    width: 48px;
    z-index: 2;
}

#myModal .close svg {
    fill: none;
    height: 22px;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-width: 3;
    width: 22px;
}

#myModal .prev,
#myModal .next {
    border-radius: 50%;
    font-size: 32px;
    font-weight: 400;
    height: 52px;
    margin: 0;
    padding: 0 0 3px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 52px;
}

#myModal .prev {
    left: 16px;
}

#myModal .next {
    right: 16px;
}

#myModal .close:hover,
#myModal .close:focus-visible,
#myModal .prev:hover,
#myModal .prev:focus-visible,
#myModal .next:hover,
#myModal .next:focus-visible {
    background: var(--highlight-color);
    border-color: var(--highlight-color);
    color: #fff;
    outline: none;
    transform: translateY(-50%) scale(1.04);
}

#myModal .close:hover,
#myModal .close:focus-visible {
    transform: scale(1.04);
}

#myModal .numbertext {
    background: rgba(15, 23, 42, 0.78);
    border: 1px solid rgba(255, 255, 255, 0.32);
    border-radius: 999px;
    color: #fff;
    font-size: 0.74rem;
    font-weight: 800;
    left: 16px;
    letter-spacing: 0.05em;
    padding: 7px 11px;
    position: absolute;
    top: 16px;
}

/* Responsive columns */
@media (max-width: 768px) {
    .content-gallery {
        /* Keep 3 columns on mobile as requested */
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
    }

    .gallery-thumb img {
        aspect-ratio: 1;
    }

    .event-information {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .event-detail-section {
        padding: 22px 20px 72px;
    }

    #myModal.modal {
        padding: 16px;
    }

    #myModal .gallery-lightbox-image {
        border-radius: 10px;
        max-height: calc(100vh - 128px);
    }

    #myModal .close {
        height: 42px;
        right: 16px;
        top: 16px;
        width: 42px;
    }

    #myModal .prev,
    #myModal .next {
        font-size: 28px;
        height: 44px;
        width: 44px;
    }

    #myModal .prev {
        left: 8px;
    }

    #myModal .next {
        right: 8px;
    }

    #myModal .numbertext {
        left: 10px;
        top: 10px;
    }
}

/* Article Page Specifics */
.article-page-container {
    padding-top: 24px;
    padding-bottom: 96px;
}

.article-page-container .article-content {
    min-width: 0;
    padding: 0;
}

.article-page-container .article-title {
    margin: 0;
    color: #252d3a;
    font-size: clamp(30px, 3.5vw, 48px);
    font-weight: 800;
    letter-spacing: -0.04em;
    text-transform: uppercase;
    line-height: 1.2;
}

.article-page-container .article-meta {
    margin: 16px 0 30px;
    color: #737983;
    font-size: 11px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    display: block;
    font-weight: 600;
}

.article-page-container .article-content > img {
    width: 100%;
    aspect-ratio: 16 / 8;
    margin: 0 0 32px;
    display: block;
    border-radius: 14px;
    object-fit: cover;
    background: #f4f5f7;
}

/*.article-featured-image {
    margin-bottom: 30px;
}

.article-featured-image img {
    width: 100%;
    border-radius: 4px;
    display: block;
}*/

.article-description {
    color: #4f5867;
}

.article-description p {
    margin: 0 0 20px;
    font-size: clamp(16px, 1.25vw, 18px);
    line-height: 1.8;
}

.article-description h1,
.article-description h2,
.article-description h3,
.article-description h4 {
    margin: 36px 0 14px;
    color: #252d3a;
    line-height: 1.25;
}

.article-description h1 {
    font-size: clamp(28px, 3vw, 40px);
}

.article-description h2 {
    font-size: clamp(24px, 2.5vw, 32px);
}

.article-description h3 {
    font-size: clamp(20px, 2vw, 26px);
}

.article-description .rich-text-align--left {
    text-align: left;
}

.article-description .rich-text-align--center {
    text-align: center;
}

.article-description .rich-text-align--right {
    text-align: right;
}

.article-description ul,
.article-description ol {
    margin: 0 0 22px;
    padding-left: 24px;
}

.article-description li {
    margin-bottom: 8px;
    line-height: 1.7;
}

.article-description blockquote {
    background: #fff5ed;
    border-left: 4px solid var(--highlight-color);
    margin: 24px 0;
    padding: 18px 20px;
}

.article-description blockquote p:last-child {
    margin-bottom: 0;
}

.article-description .article-content-list {
    list-style: none;
    margin-bottom: 20px;
    padding-left: 0;
}

.article-description .article-content-list li {
    margin-bottom: 5px;
}

.article-description a,
.article-description .article-link {
    color: var(--highlight-color);
    font-weight: 700;
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 3px;
}

.article-description a:hover,
.article-description .article-link:hover {
    color: #c84500;
}

/* Naming Page Specifics */
.naming-content {
    padding: 64px 20px 96px;
    max-width: 940px;
    margin: 0 auto;
}

.naming-content.naming-content--with-sidebar {
    max-width: 1200px;
    margin: 0 auto;
    padding: 24px 20px 96px;
}

.naming-content__body {
    min-width: 0;
}

.naming-title {
    margin: 0 0 28px;
    color: #252d3a;
    font-size: clamp(30px, 4vw, 52px);
    font-weight: 300;
    letter-spacing: -0.04em;
    text-transform: uppercase;
}

.naming-title strong {
    font-weight: 800;
}

.naming-content p {
    margin: 0 0 22px;
    color: #4f5867;
    font-size: clamp(16px, 1.25vw, 18px);
    line-height: 1.8;
}

.naming-image-container {
    margin: 36px 0;
    width: 100%;
}

.naming-image-container img {
    width: 100%;
    max-height: 520px;
    display: block;
    object-fit: contain;
    border: 1px solid #e1e5ea;
    border-radius: 14px;
    background-color: #f7f8fa;
}

.naming-buttons {
    display: flex;
    gap: 12px;
    margin-top: 34px;
    flex-wrap: wrap;
}

.btn-naming {
    border: 1px solid #d5dbe4;
    border-radius: 9px;
    padding: 13px 22px;
    color: #3d4858;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.05em;
    transition: background-color 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.btn-naming:hover,
.btn-naming:focus-visible {
    border-color: var(--highlight-color);
    color: #fff;
    background-color: var(--highlight-color);
    transform: translateY(-1px);
}

.btn-naming:focus-visible {
    outline: 3px solid rgba(255, 99, 20, 0.3);
    outline-offset: 3px;
}

.partner-empty-copy {
    color: #737983 !important;
    font-style: italic;
}

@media (max-width: 768px) {
    .naming-title {
        font-size: 32px;
    }

    .naming-buttons {
        gap: 15px;
    }

    .btn-naming {
        width: 100%;
        text-align: center;
    }
}

/* Master Page Specifics */
.partner-detail-page {
    padding: 56px 0 96px;
}

.partner-detail-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(260px, 320px);
    gap: 68px;
    align-items: start;
}

.partner-detail-content {
    min-width: 0;
}

.master-title {
    margin: 0 0 28px;
    color: #252d3a;
    font-size: clamp(30px, 3.5vw, 46px);
    font-weight: 300;
    letter-spacing: -0.04em;
    text-transform: uppercase;
    line-height: 1.2;
}

.master-title strong {
    font-weight: 800;
}

.master-featured-image {
    margin-bottom: 32px;
    overflow: hidden;
    border: 1px solid #e1e5ea;
    border-radius: 14px;
    background: #f7f8fa;
}

.master-featured-image img {
    width: 100%;
    aspect-ratio: 16 / 9;
    display: block;
    object-fit: cover;
}

.partner-detail-description {
    color: #4f5867;
}

.partner-detail-description p {
    margin: 0 0 22px;
    font-size: clamp(16px, 1.25vw, 18px);
    line-height: 1.8;
}

@media (max-width: 768px) {
    .naming-content,
    .partner-detail-page {
        padding-top: 44px;
        padding-bottom: 72px;
    }

    .partner-detail-layout {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .master-featured-image img {
        aspect-ratio: 16 / 10;
    }
}

.public-managed-banner {
    padding: 34px 0;
    background: #f7f7f7;
}

button.gallery-thumb {
    display: block;
    width: 100%;
    padding: 0;
    border: 0;
    background: transparent;
    cursor: pointer;
}

.faq-toggle:hover,
.faq-toggle:focus-visible {
    background: #f0f0f0 !important;
}

.public-managed-banner .container {
    max-width: 1180px;
}

.public-managed-banner picture,
.public-managed-banner a {
    display: block;
}

.public-legacy-stage__intro {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin: 0 0 18px;
    max-width: 900px;
}

.public-legacy-stage__section {
    margin: 50px 0;
}

.public-legacy-stage__section h3 {
    font-size: 24px;
    font-weight: 700;
    margin: 0 0 30px;
    padding-bottom: 15px;
    text-transform: uppercase;
    border-bottom: 3px solid #ff6600;
}

.public-legacy-stage__kits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 25px;
}

.public-legacy-stage__kits article {
    padding: 25px;
    border-left: 4px solid #ff6600;
    background: #f9f9f9;
}

.public-legacy-stage__kits h4 {
    margin: 0 0 12px;
    color: #000;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
}

.public-legacy-stage__kits p {
    margin: 0 0 8px;
    color: #555;
    font-size: 12px;
    line-height: 1.6;
}

.public-legacy-stage__schedule {
    padding: 35px;
    background: #f5f5f5;
}

.public-legacy-stage__schedule > div {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    padding: 0 0 15px;
    margin-bottom: 15px;
    border-bottom: 1px solid #ddd;
}

.public-legacy-stage__schedule > div:last-child {
    margin-bottom: 0;
    border-bottom: 0;
}

.public-legacy-stage__schedule strong {
    min-width: 80px;
    color: #ff6600;
    font-size: 18px;
}

.public-legacy-stage__schedule p {
    margin: 0;
    color: #333;
    font-size: 14px;
}

.public-legacy-stage__faq {
    display: grid;
    gap: 15px;
}

.public-legacy-stage__faq details {
    border: 1px solid #ddd;
    background: #fff;
}

.public-legacy-stage__faq summary {
    padding: 20px;
    background: #f9f9f9;
    color: #000;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
}

.public-legacy-stage__faq p {
    margin: 0;
    padding: 20px;
    border-top: 1px solid #ddd;
    color: #555;
    font-size: 14px;
    line-height: 1.6;
}

.public-legacy-stage__actions {
    margin-top: 50px;
}

.public-managed-banner img {
    display: block;
    width: 100%;
    max-height: 420px;
    object-fit: cover;
    border-radius: 16px;
}
