/* Programs Page Styles */

.programs-hero {
    background: linear-gradient(135deg, #1a1410 0%, #c41612 100%);
    border-radius: 24px;
    padding: 50px 40px;
    color: #fff;
    margin-bottom: 40px;
    box-shadow: 0 20px 40px rgba(196, 22, 18, 0.15);
    position: relative;
    overflow: hidden;
}

.programs-hero::after {
    content: "";
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    right: -100px;
    top: -100px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0) 70%);
}

.level-badge {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 99px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 12px;
    letter-spacing: 0.5px;
}

.badge-bachelor { background-color: rgba(196, 22, 18, 0.1); color: #c41612; }
.badge-master { background-color: rgba(13, 110, 253, 0.1); color: #0d6efd; }
.badge-phd { background-color: rgba(25, 135, 84, 0.1); color: #198754; }

.program-card {
    border: none;
    border-radius: 20px;
    background: #fff;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.program-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(196, 22, 18, 0.12);
}

.program-header {
    padding: 30px 30px 15px;
}

.program-body {
    padding: 0 30px 30px;
    flex: 1;
}

.program-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1a1410;
    margin-bottom: 15px;
    line-height: 1.4;
}

.program-desc {
    font-size: 0.95rem;
    color: #6c757d;
    line-height: 1.6;
    margin-bottom: 20px;
}

.spec-list {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}

.spec-list li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 8px;
    font-size: 0.9rem;
    color: #444;
}

.spec-list li::before {
    content: "\f00c";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    color: #c41612;
}

.program-meta {
    background: #f8f9fa;
    padding: 12px 20px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 0.85rem;
    font-weight: 600;
    color: #1a1410;
}

.program-meta i {
    color: #c41612;
}
