/* Banner区域 - 修改为完整显示 */
.hero-banner {
    margin-top: 70px;
    width: 100%;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #e0f7fa 0%, #b2ebf2 50%, #80deea 100%);
}

.hero-banner img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    max-height: 700px;
    max-width: 1400px;
}

.hero-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    /* height: 200px; */
    height: 140px;
    background: linear-gradient(to top, rgba(240, 253, 250, 1) 0%, transparent 100%);
}

/* 倒计时区域 */
.countdown-section {
    padding: 60px 5%;
    text-align: center;
    background: var(--bg-light);
}

.countdown-container {
    max-width: 1000px;
    margin: 0 auto;
}

.countdown-title {
    font-family: '黑体', serif;
    font-size: 2rem;
    color: var(--primary-dark);
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.countdown-title img {
    width: 35px;
    height: 35px;
    margin-left: 10px;
}

.countdown-title span {
    color: var(--accent);
}

.countdown-timer {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.countdown-item {
    background: white;
    padding: 25px 35px;
    border-radius: 20px;
    box-shadow: var(--shadow);
    min-width: 120px;
    transform: translateY(0);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.countdown-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.countdown-number {
    font-size: 3rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.countdown-label {
    font-size: 0.9rem;
    color: #64748b;
    margin-top: 8px;
    font-weight: 500;
}

/* 区块通用样式 */
.section {
    padding: 80px 5%;
    max-width: 1400px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-tag {
    display: inline-block;
    padding: 8px 20px;
    background: linear-gradient(135deg, var(--primary-light) 0%, rgba(6, 182, 212, 0.2) 100%);
    color: var(--primary-dark);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.section-title {
    font-family: '黑体', serif;
    font-size: 2.8rem;
    color: var(--primary-dark);
    margin-bottom: 15px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #64748b;
    margin: 0 auto;
}

/* 毕业季照片画廊 - 使用真实照片 */
.gallery-section {
    padding: 60px 5%;
    background: white;
}

.gallery-container {
    max-width: 1400px;
    margin: 0 auto;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }
}

.gallery-item {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.4s ease;
    aspect-ratio: 4/3;
    cursor: pointer;
}

.gallery-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, transparent 100%);
    color: white;
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.4s ease;
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
    opacity: 1;
}

.gallery-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.gallery-desc {
    font-size: 0.85rem;
    opacity: 0.9;
}

/* 活动卡片 - 移除部门信息 */
.activities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.activity-card {
    background: white;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.activity-card a {
    text-decoration: none;
}

.activity-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    transform: scaleX(0);
    transition: transform 0.4s ease;
    z-index: 1;
}

.activity-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
}

.activity-card:hover::before {
    transform: scaleX(1);
}

.activity-image {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.activity-content {
    padding: 30px;
}

.activity-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 15px;
    box-shadow: 0 6px 20px rgba(13, 148, 136, 0.3);
}

.activity-icon img {
    width: 40px;
    height: 40px;
}

.activity-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.activity-desc {
    color: #64748b;
    font-size: 0.95rem;
    line-height: 1.8;
}

/* 毕业典礼 - 精彩瞬间照片墙 */
.ceremony-section {
    padding: 80px 5%;
    background: var(--bg-light);
}

.ceremony-container {
    max-width: 1400px;
    margin: 0 auto;
}

.ceremony-moments {
    margin-bottom: 40px;
}

.ceremony-moments h3 {
    text-align: center;
    margin-bottom: 20px;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    justify-content: center;
}

.ceremony-moments img {
    width: 22px;
    height: 22px;
    margin-right: 10px;
}

.moments-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
}

.moment-item {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow);
    aspect-ratio: 1;
    position: relative;
    cursor: pointer;
}

.moment-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.moment-item:hover img {
    transform: scale(1.1);
}

.moment-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.moment-item:hover .moment-overlay {
    opacity: 1;
}

.moment-text {
    color: white;
    font-size: 0.9rem;
    text-align: center;
    padding: 10px;
}

.upload-placeholder {
    border: 3px dashed var(--primary);
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    background: rgba(13, 148, 136, 0.05);
    cursor: pointer;
    transition: all 0.3s ease;
}

.upload-placeholder:hover {
    background: rgba(13, 148, 136, 0.1);
}

.upload-icon {
    font-size: 2rem;
    margin-bottom: 10px;
}

.ceremony-info-mini {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    padding: 20px;
    background: white;
    border-radius: 16px;
    box-shadow: var(--shadow);
}

.ceremony-mini-item {
    text-align: center;
}

.ceremony-mini-label {
    font-size: 0.8rem;
    color: #64748b;
    margin-bottom: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ceremony-mini-label img {
    width: 16px;
    height: 16px;
    margin-right: 4px;
}

.ceremony-mini-value {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-dark);
}

/* 邀请家长参加 */
.parent-invite {
    margin-top: 40px;
    background: linear-gradient(135deg, #f0fdfa 0%, #ecfeff 50%, #f0f9ff 100%);
    border-radius: 20px;
    padding: 35px 40px;
    display: flex;
    gap: 25px;
    align-items: flex-start;
    border: 2px solid rgba(13, 148, 136, 0.15);
    position: relative;
    overflow: hidden;
}

.parent-invite::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--secondary), var(--accent));
}

.parent-invite-icon {
    font-size: 3rem;
    flex-shrink: 0;
    line-height: 1;
}

.parent-invite-icon img {
    width: 90px;
    height: 90px;
}

.parent-invite-content {
    flex: 1;
}

.parent-invite-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.parent-invite-text {
    font-size: 0.95rem;
    color: #475569;
    line-height: 1.7;
    margin-bottom: 18px;
}

.parent-invite-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px 30px;
}

.parent-invite-info-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.parent-info-label {
    font-weight: 600;
    color: var(--primary);
    font-size: 0.9rem;
    white-space: nowrap;
}

.parent-info-value {
    font-size: 0.9rem;
    color: #334155;
}

@media (max-width: 768px) {
    .parent-invite {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 25px 20px;
    }

    .parent-invite-info {
        grid-template-columns: 1fr;
    }
}

/* 九个一活动 - 3x3布局 */
.nine-one-section {
    background: linear-gradient(135deg, #0d9488 0%, #0891b2 100%);
    padding: 100px 5%;
    position: relative;
    overflow: hidden;
}

.nine-one-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
}

.nine-one-container {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.nine-one-header {
    text-align: center;
    margin-bottom: 50px;
}

.nine-one-header .section-tag {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

.nine-one-header .section-title {
    color: white;
}

.nine-one-header .section-subtitle {
    color: rgba(255, 255, 255, 0.8);
}

.nine-one-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

@media (max-width: 768px) {
    .nine-one-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .nine-one-grid {
        grid-template-columns: 1fr;
    }
}

.nine-one-card {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    padding: 25px 15px;
    text-align: center;
    cursor: pointer;
    transition: all 0.4s ease;
    text-decoration: none;
}

.nine-one-card:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-5px);
}

.nine-one-number {
    width: 45px;
    height: 45px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    font-weight: 900;
    color: var(--primary);
    margin: 0 auto 12px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.nine-one-title {
    color: white;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 5px;
}

.nine-one-dept {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.8rem;
}

/* 二级页面弹窗 */
.modal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: 2000;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.modal.active {
    display: flex;
}

.modal-content {
    background: white;
    border-radius: 24px;
    max-width: 600px;
    width: 100%;
    max-height: 80vh;
    overflow-y: auto;
    position: relative;
    animation: modalSlideIn 0.3s ease;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modal-header {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: white;
    padding: 30px;
    border-radius: 24px 24px 0 0;
}

.modal-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.modal-dept {
    font-size: 0.9rem;
    opacity: 0.9;
}

.modal-body {
    padding: 30px;
}

.modal-desc {
    color: #64748b;
    line-height: 1.8;
    margin-bottom: 20px;
}

.modal-time {
    display: inline-block;
    background: var(--bg-light);
    color: var(--primary);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.modal-close:hover {
    background: rgba(255, 255, 255, 0.3);
}

/* 毕业离校一件事 - 一站式办理 */
.departure-section {
    background: white;
    padding: 100px 5%;
}

.departure-container {
    max-width: 1400px;
    margin: 0 auto;
}

/* 一站式办理模块 */
.onestop-section {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    border-radius: 24px;
    padding: 40px;
    margin-bottom: 50px;
    color: white;
    text-align: center;
}

.onestop-title {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.onestop-title img {
    width: 34px;
    height: 34px;
    margin-right: 10px;
}

.onestop-desc {
    font-size: 1rem;
    opacity: 0.9;
    margin-bottom: 30px;
}

.onestop-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: white;
    color: var(--primary);
    padding: 15px 40px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    text-decoration: none;
}

.onestop-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.onestop-features {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.onestop-feature {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
}

.departure-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 15px;
}

@media (max-width: 992px) {
    .departure-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .departure-grid {
        grid-template-columns: 1fr;
    }
}

.departure-card {
    background: var(--bg-light);
    border-radius: 12px;
    padding: 15px;
    text-align: center;
    transition: all 0.4s ease;
    border-top: 3px solid var(--primary);
}
.departure-card a{
    text-decoration: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: center;
}
.departure-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
    background: white;
}

.departure-icon {
    flex-shrink: 0;
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: white;
    box-shadow: 0 4px 15px rgba(13, 148, 136, 0.3);
}

.departure-icon img {
    width: 26px;
    height: 26px;
}

.departure-content {
    flex: 1;
}

.departure-title {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-dark);
    line-height: 1.3;
}

.departure-dept {
    color: var(--primary);
    font-weight: 500;
    font-size: 0.75rem;
}

.departure-desc {
    display: none;
}


/* 响应式 */
@media (max-width: 768px) {
    .hero-overlay {
        height: 70px;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .countdown-number {
        font-size: 2rem;
    }

    .countdown-item {
        padding: 15px 25px;
        min-width: 80px;
    }

    .activities-grid {
        grid-template-columns: 1fr;
    }

    .nine-one-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .moments-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .departure-grid {
        grid-template-columns: 1fr;
    }

    .onestop-features {
        flex-direction: column;
        gap: 15px;
    }
}

/* 毕业季时间轴 - 横向 */
.timeline-section {
    padding: 80px 5%;
    background: linear-gradient(180deg, #f0fdfa 0%, #f8fafc 100%);
    overflow: hidden;
}

.timeline-container {
    max-width: 1200px;
    margin: 0 auto;
}

.timeline-horizontal {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    position: relative;
    padding: 60px 20px 40px;
    margin-top: 40px;
}

.timeline-line {
    position: absolute;
    top: 95px;
    left: 80px;
    right: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--secondary), var(--accent));
    border-radius: 4px;
}

.timeline-node {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 1;
    opacity: 0;
    transform: translateY(30px);
    animation: timelineFadeInUp 0.8s ease forwards;
}

.timeline-node:nth-child(1) {
    animation-delay: 0.2s;
}

.timeline-node:nth-child(2) {
    animation-delay: 0.5s;
}

.timeline-node:nth-child(3) {
    animation-delay: 0.8s;
}

@keyframes timelineFadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.timeline-node-dot {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: white;
    border: 4px solid var(--primary);
    margin-bottom: 24px;
    transition: all 0.4s ease;
    box-shadow: 0 0 0 6px rgba(13, 148, 136, 0.15);
}

.timeline-node:hover .timeline-node-dot {
    transform: scale(1.2);
    box-shadow: 0 0 0 10px rgba(13, 148, 136, 0.2);
}

.timeline-node:nth-child(2) .timeline-node-dot {
    border-color: var(--secondary);
    box-shadow: 0 0 0 6px rgba(15, 118, 110, 0.15);
}

.timeline-node-content {
    background: white;
    border-radius: 20px;
    padding: 28px 24px;
    text-align: center;
    width: 90%;
    max-width: 320px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.4s ease;
    position: relative;
}

.timeline-node:hover .timeline-node-content {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
}

.timeline-node-date {
    display: inline-block;
    padding: 6px 16px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 14px;
}

.timeline-node:nth-child(2) .timeline-node-date {
    background: linear-gradient(135deg, var(--secondary), #0d9488);
}

.timeline-node-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 10px;
    line-height: 1.4;
}

.timeline-node-desc {
    font-size: 0.9rem;
    color: #64748b;
    line-height: 1.7;
}

.timeline-node-quote {
    margin-top: 16px;
    padding: 14px 18px;
    background: linear-gradient(135deg, #fef3c7, #fde68a);
    border-radius: 12px;
    font-style: italic;
    color: #92400e;
    font-size: 0.9rem;
    line-height: 1.6;
    position: relative;
}

.timeline-node-quote::before {
    content: '"';
    position: absolute;
    top: -8px;
    left: 12px;
    font-size: 2.5rem;
    color: #f59e0b;
    font-family: Georgia, serif;
    line-height: 1;
}

/* 突出第三个节点 */
.timeline-node.highlight-final {
    transform: translateY(-20px);
    animation: timelineFadeInUp 0.8s ease forwards;
    animation-delay: 0.8s;
}

.timeline-node.highlight-final .timeline-node-dot {
    width: 36px;
    height: 36px;
    border: 5px solid var(--accent);
    background: linear-gradient(135deg, var(--accent), #f97316);
    box-shadow: 0 0 0 8px rgba(245, 158, 11, 0.25), 0 0 30px rgba(245, 158, 11, 0.3);
    animation: pulseGlow 2s ease-in-out infinite;
}

@keyframes pulseGlow {

    0%,
    100% {
        box-shadow: 0 0 0 8px rgba(245, 158, 11, 0.25), 0 0 20px rgba(245, 158, 11, 0.2);
    }

    50% {
        box-shadow: 0 0 0 12px rgba(245, 158, 11, 0.2), 0 0 40px rgba(245, 158, 11, 0.4);
    }
}

.timeline-node.highlight-final .timeline-node-date {
    background: linear-gradient(135deg, var(--accent), #f97316);
    font-size: 0.9rem;
    padding: 6px 18px;
}

.timeline-node.highlight-final .timeline-node-title {
    font-size: 1.2rem;
    background: linear-gradient(135deg, var(--accent), #f97316);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.timeline-node.highlight-final .timeline-node-content {
    background: linear-gradient(145deg, #fffbeb, #fef3c7);
    border: 2px solid #fcd34d;
    box-shadow: 0 8px 30px rgba(245, 158, 11, 0.15);
    padding: 32px 28px;
}

.timeline-node.highlight-final:hover .timeline-node-content {
    transform: translateY(-12px);
    box-shadow: 0 16px 50px rgba(245, 158, 11, 0.25);
}

/* 响应式 */
@media (max-width: 900px) {
    .timeline-horizontal {
        flex-direction: column;
        align-items: center;
        gap: 40px;
        padding: 40px 20px;
    }

    .timeline-line {
        top: 0;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 4px;
        height: auto;
        background: linear-gradient(180deg, var(--primary), var(--secondary), var(--accent));
    }

    .timeline-node {
        width: 100%;
        max-width: 400px;
    }

    .timeline-node.highlight-final {
        transform: translateX(0);
    }

    .timeline-node-content {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .timeline-node-content {
        padding: 20px 16px;
    }

    .timeline-node-title {
        font-size: 1rem;
    }

    .timeline-node.highlight-final .timeline-node-title {
        font-size: 1.05rem;
    }
}