:root {
    --mubi-bg: #000000;
    --mubi-text: #ffffff;
    --mubi-accent: #ffffff;
    --mubi-gray: #7d7d7d;
    --header-height: 50px;
}

@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url('../font/Inter-Regular.woff2') format('woff2');
}

@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 500;
    font-display: swap;
    src: url('../font/Inter-Medium.woff2') format('woff2');
}

@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 600;
    font-display: swap;
    src: url('../font/Inter-SemiBold.woff2') format('woff2');
}

@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: url('../font/Inter-Bold.woff2') format('woff2');
}

@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 800;
    font-display: swap;
    src: url('../font/Inter-ExtraBold.woff2') format('woff2');
}

.video-ed-main {
    background-color: var(--mubi-bg);
    color: var(--mubi-text);
}

.section-padding {
    padding: 120px 0;
}

.text-center {
    text-align: center;
}

.section-header {
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.section-title {
    font-size: 20px;
    color: #323232;
    margin-bottom: 15px;
    font-weight: 300;
}

.cases-accordion-section {
    padding: 40px 0;
    background-color: #fcfcfc;
}

.container-accordion-layout {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 40px;
}

.cases-carousel-wrapper {
    position: relative;
    width: 100%;
    max-width: 1200px;
    margin: 40px auto 0;
    padding: 0;
    overflow: visible;
}

.cases-grid {
    display: flex;
    flex-wrap: nowrap;
    gap: 5px;
    overflow: visible;
    scroll-behavior: smooth;
    padding: 10px 0;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    width: 100%;
    will-change: transform;
}

.cases-carousel-viewport {
    overflow: hidden;
    width: 100%;
}

.case-card {
    flex: 0 0 25%;
    box-sizing: border-box;
    padding: 0 5px;
    display: flex;
    flex-direction: column;
    background: #fff;
    border: 1px solid #eee;
    transition: all 0.4s ease;
    flex-shrink: 0;
}

.case-card:hover {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
    transform: translateY(-5px);
}

.case-poster-box {
    width: 100%;
    aspect-ratio: 0.75;
    overflow: hidden;
    background: #111;
}

.case-poster-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.case-card:hover .case-poster-box img {
    transform: scale(1.08);
}

.case-content {
    padding: 5px 18px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.case-title {
    font-size: 18px;
    font-weight: 600;
    text-align: left;
    color: #111;
    margin-bottom: 8px;
    min-height: 24px;
    letter-spacing: 0.02em;
}

.case-service-line {
    display: block;
    font-size: 13px;
    color: #666;
    margin-bottom: 10px;
    text-align: left;
}

.case-awards-wrapper {
    position: relative;
    max-height: 48px;
    overflow: hidden;
    transition: max-height 0.4s ease;
    margin-bottom: 20px;
}

.case-awards-wrapper.expanded {
    max-height: 600px;
}

.case-awards {
    list-style: none;
    padding: 0;
    margin: 0;
}

.case-awards li {
    font-size: 12px;
    line-height: 1.6;
    color: #555;
    margin-bottom: 6px;
    position: relative;
    padding-left: 14px;
}

.case-awards li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 9px;
    width: 4px;
    height: 1px;
    background: #bbb;
}

.expand-action {
    margin-top: auto;
    padding-top: 6px;
    text-align: left;
}

.expand-btn {
    border: 0;
    background: transparent;
    color: #666;
    font-size: 12px;
    cursor: pointer;
    padding: 0;
}

.expand-btn:hover {
    color: #111;
}

.carousel-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border: none;
    background: transparent;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    padding: 0;
    transition: opacity 0.3s ease;
    z-index: 100;
    opacity: 0.6;
}

.carousel-nav-btn.prev {
    left: -20px;
}

.carousel-nav-btn.next {
    right: -20px;
}

.carousel-nav-btn svg {
    display: block;
}

.carousel-nav-btn svg path {
    stroke: #7d7d7d;
}

.carousel-nav-btn:hover {
    background: transparent;
    opacity: 1;
    transform: translateY(-50%);
}

@media (max-width: 1560px) {
    .carousel-nav-btn.prev {
        left: -10px;
    }

    .carousel-nav-btn.next {
        right: -10px;
    }
}

@media (max-width: 768px) {
    .carousel-nav-btn {
        display: none !important;
    }
}

.fs-carousel-dots {
    display: none;
}

.price-section {
    padding: 40px 0;
    background-color: #fff;
}

.price-section .section-header {
    text-align: center;
    margin-bottom: 50px;
}

.price-table-wrapper {
    max-width: 1080px;
    margin: 0 auto;
    overflow-x: auto;
    padding: 0 40px;
}

.price-table {
    width: 100%;
    border-collapse: collapse;
    border: 1px solid #dcdcdc;
    font-size: 15px;
    background: #fff;
}

.price-table thead th {
    background-color: #f3f3f3;
    color: #333;
    padding: 18px 15px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-align: center;
    font-size: 14px;
    border: 1px solid #dbdada;
}

.price-table tbody td {
    border: 1px solid #dbdada;
    padding: 24px 20px;
    text-align: center;
    vertical-align: middle;
    color: #333;
    line-height: 1.6;
}

.price-table tbody tr:hover {
    background-color: #f9f9f9;
}

.price-table .col-project {
    width: 33.33%;
}

.price-table .col-price {
    width: 33.33%;
}

.price-box {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    row-gap: 2px;
    column-gap: 8px;
    padding: 2px 0;
}

.new-price {
    width: 100%;
    font-size: 16px;
    color: #333;
    font-weight: 700;
    letter-spacing: 0.01em;
}

.process-section {
    padding: 40px 0;
    background-color: #fff;
    overflow: hidden;
}

.process-container {
    max-width: 700px;
    margin: 0 auto;
    padding: 0 20px;
}

.process-item {
    display: flex;
    align-items: center;
    padding: 20px 0;
    border-top: 1px solid #dbdada;
    transition: all 0.4s ease;
    position: relative;
}

.process-item:last-child {
    border-bottom: 1px solid #dbdada;
}

.step-number {
    flex: 0 0 120px;
    font-family: "Times New Roman", Times, serif;
    font-size: 45px;
    font-weight: 700;
    color: #dedede;
    line-height: 1;
    transition: color 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    user-select: none;
}

.process-item:hover .step-number {
    color: #111;
}

.process-content {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 40px;
}

.action-box,
.outcome-box {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.step-header {
    display: flex;
    align-items: center;
    gap: 12px;
}

.step-icon {
    width: 22px;
    height: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #333;
}

.step-icon svg {
    width: 100%;
    height: 100%;
    stroke-width: 1.8px;
}

.step-title {
    font-size: 18px;
    font-weight: 300;
    color: #111;
    letter-spacing: 0.05em;
    margin: 0;
}

.process-divider {
    flex: 0 0 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ddd;
}

.process-cta {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-top: 60px;
    padding-bottom: 20px;
}

.process-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 14px 40px;
    border: 1px solid #333;
    border-radius: 6px;
    background-color: #fff;
    color: #333;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none !important;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    letter-spacing: 0.05em;
}

.process-cta-btn:hover {
    background-color: #111;
    color: #fff;
    border-color: #111;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.process-cta-btn svg {
    transition: transform 0.3s ease;
}

.process-cta-btn:hover svg {
    transform: translateX(5px);
    color: #fff;
}

@media (max-width: 991px) {
    .process-content {
        flex-direction: column;
        align-items: stretch;
        gap: 30px;
    }

    .process-cta {
        flex-direction: column;
        gap: 16px;
        align-items: center;
    }

    .action-box,
    .outcome-box {
        width: 100%;
    }

    .process-divider {
        display: none;
    }

    .step-number {
        flex: 0 0 100px;
        font-size: 60px;
    }

}

@media (max-width: 900px) {
    .case-card {
        flex: 0 0 50%;
    }
}

@media (max-width: 500px) {
    .case-card {
        flex: 0 0 100%;
    }
}

.hero-section {
    position: relative;
    height: calc(100vh - var(--header-height));
    min-height: 600px;
    background-color: #0c0c0c;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    padding-bottom: 10px;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.6;
    filter: contrast(1.1) brightness(0.8);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    /*background: linear-gradient(to right, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.4) 50%, transparent 100%);*/
    z-index: 2;
}

.hero-container {
    position: relative;
    z-index: 3;
}

.hero-content {
    max-width: 850px;
    padding-left: 20px;
    animation: hero-fade-in 1.2s ease-out forwards;
}

@keyframes hero-fade-in {
    from {
        opacity: 0;
        transform: translateY(30px);
        filter: blur(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
        filter: blur(0);
    }
}

.hero-tag {
    display: block;
    font-family: 'Inter', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    font-size: 11px;
    color: var(--mubi-gray);
    margin-bottom: 24px;
}

.hero-title {
    font-family: "Playfair Display", "Times New Roman", serif;
    font-size: 58px;
    line-height: 1.15;
    font-weight: 400;
    margin-bottom: 30px;
    color: #fff;
}

.hero-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 17px;
    line-height: 1.8;
    color: #fff;
    max-width: 580px;
    margin-bottom: 45px;
    font-weight: 300;
}

.hero-actions {
    display: flex;
    gap: 20px;
    align-items: center;
}

.btn-master {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 44px;
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    text-decoration: none !important;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    cursor: pointer;
    border-radius: 0px;
}

.btn-master-primary {
    background: #fff;
    color: #000 !important;
    border: none;
}

.btn-master-primary:hover {
    background: #ccc;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(255, 255, 255, 0.1);
}

.btn-master-outline {
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff !important;
    background: transparent;
}

.btn-master-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #fff;
    transform: translateY(-2px);
}

@media (max-width: 1024px) {
    .hero-title {
        font-size: 46px;
    }
}

@media (max-width: 768px) {
    .hero-section {
        height: auto;
        min-height: 100vh;
        padding: 120px 20px 10px;
    }

    .hero-content {
        padding-left: 0;
        padding-top: 0;
    }

    .hero-title {
        font-size: 36px;
    }

    .hero-subtitle {
        font-size: 16px;
        margin-bottom: 40px;
    }

    .hero-actions {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
    }

    .laurel-badge img {
        width: 100px;
    }

    .carousel-nav-btn {
        display: none;
    }
}

.ed-cta-wrapper {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-top: 100px;
    padding-bottom: 140px;
}

.ed-btn-rectangular {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    min-width: 260px;
    padding: 18px 30px;
    border: 1px solid #333;
    border-radius: 4px;
    background-color: #fff;
    color: #1a1a1a;
    font-family: 'Inter', "Microsoft YaHei", sans-serif;
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 0.05em;
    text-decoration: none;
    transition: all 0.3s ease;
}

.ed-btn-rectangular:hover {
    background-color: #1a1a1a;
    color: #fff;
}

.ed-btn-rectangular:hover .icon-line-arrow {
    transform: translateX(5px);
}

.icon-line-arrow {
    width: 20px;
    height: 20px;
    margin-left: 20px;
    transition: transform 0.3s ease;
}

.ed-btn-capsule {
    display: inline-flex;
    align-items: center;
    padding: 18px 40px;
    border-radius: 50px;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid #000;
}

.ed-btn-primary {
    background-color: #000;
    color: #fff;
    border-color: #000;
}

.ed-btn-primary:hover {
    background-color: #333;
    transform: translateY(-3px);
}

.ed-btn-outline {
    background-color: transparent;
    color: #000;
    border-color: #000;
}

.ed-btn-outline:hover {
    background-color: #f5f5f5;
    transform: translateY(-3px);
}

.icon-circle-arrow {
    margin-left: 10px;
    width: 18px;
    height: 18px;
}

.ed-pricing-container {
    max-width: 900px;
    margin: 0 auto;
}

.ed-price-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 50px;
    border-top: 2px solid #000;
}

.ed-price-table th {
    text-align: left;
    padding: 25px 0;
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: #888;
    border-bottom: 1px solid #eee;
}

.ed-price-table td {
    padding: 35px 0;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    color: #1a1a1a;
    border-bottom: 1px solid #eee;
}

.ed-price-amount {
    font-family: 'Newsreader', serif;
    font-weight: 600;
    font-size: 26px;
    color: #000;
}

.ed-price-amount::before {
    content: "¥ ";
    font-size: 15px;
    font-weight: 400;
    margin-right: 5px;
}

.ed-pricing-footer {
    margin-top: 40px;
    font-size: 13px;
    color: #666;
    line-height: 1.8;
    font-style: italic;
}

.price-section .ed-pricing-footer {
    max-width: 1080px;
    margin: 10px auto 0;
    padding: 0 40px;
    text-align: left;
}

@media (max-width: 860px) {
    .price-section .ed-pricing-footer {
        padding: 0 10px;
    }
}

.ed-timeline-wrapper {
    position: relative;
    max-width: 1000px;
    margin: 100px auto 0;
    padding: 40px 0;
}

.ed-timeline-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    width: 1px;
    height: 100%;
    background: #e5e5e5;
    transform: translateX(-50%);
}

.ed-timeline-item {
    position: relative;
    width: 50%;
    padding: 20px 60px;
    margin-bottom: 60px;
    box-sizing: border-box;
}

.ed-timeline-item.left {
    left: 0;
    text-align: right;
}

.ed-timeline-item.right {
    left: 50%;
    text-align: left;
}

.ed-timeline-dot {
    position: absolute;
    top: 35px;
    width: 10px;
    height: 10px;
    background: #000;
    border-radius: 50%;
    z-index: 2;
}

.left .ed-timeline-dot {
    right: -5px;
}

.right .ed-timeline-dot {
    left: -5px;
}

.ed-step-card {
    background: #fff;
    padding: 30px;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.ed-step-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
}

.ed-step-num {
    display: block;
    font-family: 'Newsreader', serif;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: #bbb;
    margin-bottom: 12px;
}

.ed-step-card h3 {
    font-family: 'Newsreader', serif;
    font-size: 22px;
    font-weight: 400;
    color: #000;
    margin-bottom: 15px;
}

.ed-step-card p {
    font-size: 14px;
    color: #555;
    line-height: 1.7;
}

@media (max-width: 850px) {
    .ed-timeline-wrapper::before {
        left: 30px;
    }

    .ed-timeline-item {
        width: 100%;
        left: 0 !important;
        text-align: left !important;
        padding: 20px 20px 20px 70px;
    }

    .ed-timeline-dot {
        left: 25px !important;
    }
}

.detail-section {
    background-color: #0c0c0c;
    color: #fff;
    border-top: 1px solid #222;
}

.detail-container {
    max-width: 1100px;
}

.detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
}

.detail-col-header {
    font-family: 'Newsreader', serif;
    font-style: italic;
    font-weight: 200;
    font-size: 32px;
    margin-bottom: 24px;
    color: #fff;
    letter-spacing: -0.01em;
}

.detail-text {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    line-height: 1.8;
    color: #999;
    font-weight: 300;
}

.detail-text strong {
    color: #fff;
    font-weight: 500;
}

.process-section .process-container {
    max-width: 1080px;
    padding: 0 40px;
}

.process-list.vertical-steps {
    max-width: 700px;
    margin: 0 auto;
}

.process-list.vertical-steps .process-content {
    display: block;
    text-align: left;
}

.process-list.vertical-steps .action-box {
    width: 100%;
}

.process-list.vertical-steps .process-divider,
.process-list.vertical-steps .outcome-box {
    display: none;
}

@media (max-width: 860px) {
    .process-section .process-container {
        padding: 0 10px;
    }

    .process-list.vertical-steps {
        max-width: 100%;
    }
}

.masters-section {
    padding: 40px 0;
    background-color: #fff;
    color: #000;
}

.masters-intro {
    max-width: 1160px;
    margin: 0 auto 40px;
    border-top: 1px solid #ebebeb;
    border-bottom: 1px solid #ebebeb;
    background: #fff;
}

.masters-intro-item {
    display: grid;
    grid-template-columns: 140px minmax(0, 1fr);
    align-items: center;
    column-gap: 24px;
    padding: 26px 0;
    min-height: 156px;
}

.masters-intro-item+.masters-intro-item {
    border-top: 1px solid #ebebeb;
}

.masters-intro-num {
    font-family: "Times New Roman", "Georgia", "Newsreader", serif;
    font-size: 60px;
    line-height: 0.95;
    font-weight: 700;
    color: #dedede;
    text-align: center;
    letter-spacing: -0.02em;
    transition: color 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.masters-intro-item:first-child .masters-intro-num {
    color: #dedede;
}

.masters-intro-item:hover .masters-intro-num {
    color: #111;
}

.masters-intro-body {
    min-width: 0;
}

.masters-intro-title {
    margin: 0 0 10px;
    font-size: 16px;
    font-weight: 600;
    color: #000;
    line-height: 1.4;
}

.masters-intro-text {
    margin: 0;
    font-size: 13px;
    line-height: 1.7;
    color: #666;
    font-weight: 300;
}

.masters-grid {
    max-width: 1160px;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 24px;
    margin: 0 auto;
}

.master-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    background: #fff;
    border: 1px solid #eee;
    transition: all 0.4s ease;
}

.master-card:hover {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
    transform: translateY(-5px);
}

.master-image-box {
    position: relative;
    aspect-ratio: 0.75;
    overflow: hidden;
    background-color: #f7f7f7;
    margin-bottom: 18px;
}

.master-image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: none;
    transition: all 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.master-card:hover .master-image-box img {
    transform: scale(1.05);
}

.master-info {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: 0 16px 14px;
    min-height: 180px;
}

.master-name {
    font-family: 'Newsreader', serif;
    font-weight: 400;
    font-size: 22px;
    margin-bottom: 5px;
    letter-spacing: -0.02em;
}

.master-tagline {
    display: block;
    font-family: 'Inter', sans-serif;
    text-transform: uppercase;
    font-size: 11px;
    letter-spacing: 0.3em;
    color: #888;
    margin-bottom: 24px;
    border-bottom: 1px solid #eee;
    padding-bottom: 12px;
}

.master-honors {
    list-style: none;
    padding: 0;
}

.master-honors.master-honors-collapsible {
    --master-collapsed-height: 180px;
    max-height: var(--master-collapsed-height);
    overflow: hidden;
    margin-bottom: 10px;
    transition: max-height 0.4s ease;
}

.master-honors.master-honors-collapsible.expanded {
    max-height: 2000px;
}

.master-expand-action {
    margin-top: auto;
    padding-top: 2px;
}

.master-honors li {
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 12px;
    position: relative;
    padding-left: 18px;
    font-weight: 400;
}

.master-honors li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 9px;
    width: 4px;
    height: 1px;
    background: #ccc;
}

@media (max-width: 1024px) {
    .masters-intro-item {
        grid-template-columns: 110px minmax(0, 1fr);
        column-gap: 20px;
        min-height: 136px;
    }

    .masters-intro-num {
        font-size: 58px;
    }

    .masters-intro-title {
        font-size: 16px;
    }

    .masters-intro-text {
        font-size: 13px;
    }

    .masters-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 768px) {
    .detail-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .masters-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .masters-intro {
        margin-bottom: 30px;
    }

    .masters-intro-item {
        grid-template-columns: 84px minmax(0, 1fr);
        column-gap: 12px;
        padding: 20px 0;
        min-height: 108px;
    }

    .masters-intro-num {
        font-size: 46px;
    }

    .masters-intro-title {
        font-size: 16px;
    }

    .masters-intro-text {
        font-size: 13px;
        line-height: 1.7;
    }

    .master-info {
        min-height: auto;
    }

    .section-padding {
        padding: 80px 0;
    }
}

.mission-section {
    background-color: #fff;
    color: #000;
}

.mission-container {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 80px;
    align-items: center;
}

.laurel-badge {
    text-align: center;
    position: relative;
    padding: 20px;
}

.badge-year {
    display: block;
    font-family: 'Inter', sans-serif;
    font-size: 10px;
    letter-spacing: 0.4em;
    color: #999;
    margin-bottom: 15px;
}

.laurel-badge img {
    width: 120px;
    height: auto;
    filter: grayscale(1);
    transition: filter 0.5s ease;
}

.laurel-badge:hover img {
    filter: grayscale(0);
}

.badge-label {
    display: block;
    margin-top: 15px;
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.mission-text-col {
    max-width: 800px;
}

.mission-quote {
    font-family: 'Newsreader', serif;
    font-size: 38px;
    line-height: 1.3;
    font-weight: 300;
    margin-bottom: 32px;
    letter-spacing: -0.01em;
}

.mission-details {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    line-height: 1.8;
    color: #444;
    columns: 2;
    column-gap: 40px;
    font-weight: 300;
}

.mission-details p {
    margin-bottom: 0;
}

@media (max-width: 992px) {
    .mission-container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .mission-text-col {
        margin: 0 auto;
    }

    .mission-details {
        columns: 1;
        text-align: left;
    }

    .mission-quote {
        font-size: 28px;
    }

    .laurel-badge img {
        width: 100px;
    }
}