.research-detail-page {
    padding-top: 72px;
    background: var(--off-white);
}

.detail-header {
    background: linear-gradient(135deg, var(--dark), var(--dark-2));
    padding: 60px 5%;
    position: relative;
    overflow: hidden;
}

.detail-header::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 60% 60% at 50% 50%, rgba(232, 114, 12, 0.15) 0%, transparent 60%);
}

.detail-header h1 {
    font-family: var(--font-head);
    font-size: 2.8rem;
    color: var(--white);
    position: relative;
    margin-bottom: 15px;
}

.detail-header .breadcrumb {
    color: var(--silver);
    font-size: 0.9rem;
    position: relative;
}

.detail-header a {
    color: var(--orange-light);
    text-decoration: none;
}

.detail-header a:hover {
    text-decoration: underline;
}

.detail-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 50px 5%;
}

.detail-intro {
    background: var(--white);
    border-radius: 16px;
    padding: 40px;
    margin-bottom: 30px;
    border: 1px solid rgba(0, 0, 0, 0.06);
}

.detail-intro p {
    color: var(--silver);
    line-height: 1.8;
    font-size: 1.05rem;
}

.pathway-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.pathway-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.06);
    transition: all 0.3s;
}

.pathway-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    border-color: var(--orange);
}

.pathway-card .card-img {
    height: 140px;
    background: var(--dark-3);
    display: flex;
    align-items: center;
    justify-content: center;
}

.pathway-card .card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.7;
}

.pathway-card .card-body {
    padding: 20px;
}

.pathway-card h3 {
    font-family: var(--font-head);
    font-size: 1.1rem;
    color: var(--dark);
    margin-bottom: 10px;
}

.pathway-card p {
    color: var(--silver);
    font-size: 0.85rem;
    line-height: 1.5;
    margin-bottom: 15px;
}

.pathway-card a {
    color: var(--orange);
    font-weight: 600;
    font-size: 0.85rem;
    text-decoration: none;
}

.pathway-card a:hover {
    text-decoration: underline;
}

@media (max-width: 1024px) {
    .pathway-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 576px) {
    .pathway-grid {
        grid-template-columns: 1fr;
    }
}
