/* Auto-extracted from resources/views/academics/show.blade.php */

.program-header-info {
        margin-bottom: 40px;
    }

    .program-title-large {
        font-size: clamp(24px, 5vw, 42px);
        font-weight: 800;
        color: #2971b7;
        margin-bottom: 25px;
        text-transform: uppercase;
        word-wrap: break-word;
    }

    .program-meta-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 20px;
        margin-bottom: 40px;
    }

    .meta-item {
        display: flex;
        gap: 15px;
        align-items: center;
        flex-wrap: wrap;
    }

    .meta-label {
        font-size: 14px;
        color: #666;
    }

    .meta-value {
        font-size: 18px;
        font-weight: 700;
        color: #333;
    }

    .program-banner-image {
        width: 100%;
        height: min(500px, 50vh);
        border-radius: 25px;
        overflow: hidden;
        margin-bottom: 60px;
        box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    }

    .program-banner-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .info-section {
        margin-bottom: 50px;
    }

    .program-section-title {
        font-size: 24px;
        font-weight: 800;
        color: #1a1a1a;
        margin-bottom: 25px;
        text-transform: uppercase;
        letter-spacing: 1px;
        display: flex;
        align-items: center;
        gap: 10px;
    }

    .program-section-title::before {
        content: "";
        width: 4px;
        height: 24px;
        background: #2971b7;
        display: inline-block;
    }

    .highlights-list {
        list-style: none;
        padding: 0;
    }

    .highlights-list li {
        position: relative;
        padding-left: 30px;
        margin-bottom: 15px;
        line-height: 1.6;
        color: #555;
        font-size: 16px;
    }

    .highlights-list li::before {
        content: "»";
        position: absolute;
        left: 0;
        color: #2971b7;
        font-weight: 800;
        font-size: 20px;
        top: -2px;
    }

    .related-programs-section {
        background: #f8f9fa;
        padding: 60px 20px;
        margin: 60px -20px 0;
        width: calc(100% + 40px);
        max-width: none;
        box-sizing: border-box;
    }

    @media (max-width: 768px) {
        .related-programs-section {
            margin-left: -16px;
            margin-right: -16px;
            width: calc(100% + 32px);
            padding: 40px 16px;
        }
    }

    .related-grid {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
        gap: 25px;
        margin-top: 40px;
    }

    .related-card-link {
        text-decoration: none;
        color: inherit;
    }

    .related-card {
        border-radius: 15px;
        overflow: hidden;
        position: relative;
        height: 300px;
        box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    }

    .related-card img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.3s ease;
    }

    .related-card:hover img {
        transform: scale(1.1);
    }

    .related-card-overlay {
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        padding: 20px;
        background: linear-gradient(transparent, rgba(0,0,0,0.8));
        color: white;
    }

    .related-card-title {
        font-size: 18px;
        font-weight: 700;
        margin-bottom: 10px;
    }

    .know-more-small {
        display: inline-block;
        background: #2971b7;
        color: white;
        padding: 5px 15px;
        border-radius: 5px;
        font-size: 12px;
        font-weight: 600;
    }
