.mpsb-shuttle-detail-wrapper {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    max-width: 1280px;
    margin: 40px auto;
    padding: 0 20px;
}

.mpsb-shuttle-hero {
    display: flex;
    flex-direction: column;
    background: linear-gradient(145deg, #153f35 0%, #1d5c4d 100%);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 24px 50px rgba(29, 92, 77, 0.2);
    margin-bottom: 40px;
    position: relative;
}

@media (min-width: 768px) {
    .mpsb-shuttle-hero {
        flex-direction: row;
        align-items: center;
    }
}

.mpsb-shuttle-hero-content {
    flex: 1;
    padding: 40px;
    color: #ffffff;
    position: relative;
    z-index: 2;
}

.mpsb-shuttle-hero-image {
    flex: 1;
    position: relative;
    min-height: 250px;
}

@media (min-width: 768px) {
    .mpsb-shuttle-hero-image {
        min-height: 100%;
        align-self: stretch;
    }
}

.mpsb-shuttle-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    inset: 0;
}

.mpsb-shuttle-hero-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, #1d5c4d 0%, transparent 50%);
    pointer-events: none;
}

@media (max-width: 767px) {
    .mpsb-shuttle-hero-image::after {
        background: linear-gradient(to bottom, #1d5c4d 0%, transparent 50%);
    }
}

.mpsb-shuttle-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.15);
    color: #f3b34c;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 16px;
    backdrop-filter: blur(8px);
}

.mpsb-shuttle-title {
    margin: 0 0 16px;
    font-size: clamp(2rem, 5vw, 3.5rem);
    line-height: 1.1;
    font-weight: 800;
    color: #ffffff;
}

.mpsb-shuttle-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 24px;
}

.mpsb-meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    color: rgba(255, 255, 255, 0.9);
}

.mpsb-meta-item svg {
    width: 20px;
    height: 20px;
    fill: #f3b34c;
}

.mpsb-shuttle-desc {
    font-size: 16px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
}

.mpsb-shuttle-route {
    font-size: 1.2rem;
    color: #f3b34c;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
    letter-spacing: 0.5px;
    background: rgba(0, 0, 0, 0.2);
    padding: 8px 16px;
    border-radius: 12px;
    width: fit-content;
}

.route-arrow {
    font-size: 1.4rem;
    line-height: 1;
    color: #ffffff;
    opacity: 0.6;
}

.mpsb-scroll-to-book {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 50px;
    background: #f3b34c;
    color: #153f35;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 10px 25px rgba(243, 179, 76, 0.4);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 10;
    border: none;
    cursor: pointer;
}

.mpsb-scroll-to-book:hover {
    transform: translateX(-50%) translateY(-5px);
    box-shadow: 0 15px 30px rgba(243, 179, 76, 0.6);
    background: #ffffff;
}

.mpsb-scroll-to-book svg {
    width: 24px;
    height: 24px;
    fill: currentColor;
}

@keyframes bounce-down {
    0%, 20%, 50%, 80%, 100% {transform: translateY(0);}
    40% {transform: translateY(5px);}
    60% {transform: translateY(3px);}
}

.mpsb-scroll-to-book svg {
    animation: bounce-down 2s infinite;
}
