/* Anti-Doping Page Specific Styles */

.anti-doping-page .hero h1 {
    color: #ffff00 !important;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8), 0 0 24px rgba(0, 0, 0, 0.45);
}

.anti-doping-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 20px;
    align-items: start;
    margin: 12px 0 24px;
}

.anti-doping-guide-section {
    background: transparent;
    border: 0;
    border-radius: 0;
    padding: 0;
    margin: 0;
    position: sticky;
    top: 64px;
    z-index: 5;
    width: 3.2in;
    justify-self: end;
}

.anti-doping-guide-image {
    width: 3.2in;
    height: auto;
    max-height: calc(100vh - 92px);
    border: 0;
    border-radius: 0;
    background: transparent;
    object-fit: contain;
    display: block;
}

.hero .reg-no {
    color: #fff;
}

.pdf-open-link {
    text-decoration: none;
    text-align: center;
    background: linear-gradient(135deg, #ffdd66, #f4c215);
    color: #0b1433;
    font-weight: 700;
    border-radius: 6px;
    padding: 8px 10px;
    transition: transform 160ms ease, filter 160ms ease, box-shadow 160ms ease;
    box-shadow: 0 14px 22px rgba(0,0,0,0.25);
}

.pdf-open-link:hover {
    filter: brightness(1.05);
    transform: translateY(-1px);
}

.pdf-open-link:active {
    transform: translateY(0) scale(0.98);
}

.anti-doping-content {
    margin-bottom: 0;
}

.anti-doping-card {
    background: rgba(255, 255, 255, 0.9);
    padding: 30px;
    margin-bottom: 30px;
    border-radius: 10px;
    border: 1px solid #ccc;
}

.anti-doping-card h2 {
    color: #000;
    font-size: 24px;
    margin-bottom: 20px;
    font-weight: bold;
    text-transform: uppercase;
}

.anti-doping-card p {
    color: #333;
    font-size: 16px;
    margin-bottom: 20px;
    line-height: 1.6;
}

.anti-doping-card ul {
    list-style: none;
    padding: 0;
}

.anti-doping-card li {
    color: #333;
    font-size: 16px;
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
}

.anti-doping-card li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #000;
    font-weight: bold;
}

/* External Links Section */
.external-links {
    margin-bottom: 40px;
    text-align: center;
}

.external-links h2 {
    color: #fff;
    font-size: 28px;
    margin-bottom: 30px;
    font-weight: bold;
    text-transform: uppercase;
}

.links-grid {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.link-card {
    background: rgba(255, 255, 255, 0.9);
    padding: 30px 20px;
    border: 1px solid #ccc;
    border-radius: 10px;
    text-decoration: none;
    color: #000;
    min-width: 250px;
    max-width: 300px;
    transition: all 0.3s ease;
    display: block;
}

.link-card:hover {
    background: rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.link-card h3 {
    font-size: 18px;
    margin-bottom: 10px;
    font-weight: bold;
    color: #000;
}

.link-card p {
    font-size: 14px;
    color: #333;
    margin: 0;
}

/* Back Section */
.back-section {
    text-align: center;
    margin-bottom: 40px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .anti-doping-layout {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    .anti-doping-guide-section {
        padding: 10px;
        margin-top: 8px;
        position: static;
        width: 100%;
    }

    .anti-doping-guide-image {
        width: 100%;
        max-height: none;
    }

    .anti-doping-card {
        padding: 20px;
        margin-bottom: 20px;
    }
    
    .anti-doping-card h2 {
        font-size: 20px;
    }
    
    .links-grid {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }
    
    .link-card {
        max-width: 100%;
    }
}
