/* ===================================
   CLINICAL SKILLS PAGE STYLES
   =================================== */

.page-hero {
    padding: 140px 0 80px;
    text-align: center;
    background: linear-gradient(135deg, #0093E9 0%, #80D0C7 100%);
    color: var(--white);
    position: relative;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="40" height="40" patternUnits="userSpaceOnUse"><path d="M 40 0 L 0 0 0 40" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.5;
}

.section-intro {
    text-align: center;
    font-size: 18px;
    color: var(--text-secondary);
    max-width: 800px;
    margin: -20px auto 60px;
    line-height: 1.7;
}

/* Clinical Skills Grid */
.clinical-section {
    padding: 100px 0;
    background: var(--secondary-color);
}

.skills-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 48px;
    margin-top: 40px;
}

.skill-card {
    background: var(--white);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.skill-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.skill-icon {
    width: 80px;
    height: 80px;
    margin: 40px auto 24px;
    background: linear-gradient(135deg, #0093E9 0%, #80D0C7 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    color: var(--white);
}

.skill-card h3 {
    font-size: 28px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 16px;
    padding: 0 32px;
    color: var(--text-primary);
}

.skill-card > p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-secondary);
    padding: 0 32px 24px;
    text-align: center;
}

/* Video Wrapper */
.video-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    background: #000;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* Tips Section */
.tips-section {
    padding: 32px;
    background: var(--secondary-color);
}

.tips-section h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 8px;
}

.tips-section h4 i {
    color: var(--accent-color);
}

.tips-section ul {
    list-style: none;
    padding: 0;
}

.tips-section ul li {
    padding: 12px 0;
    padding-left: 28px;
    position: relative;
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-secondary);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.tips-section ul li:last-child {
    border-bottom: none;
}

.tips-section ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 12px;
    color: var(--accent-color);
    font-weight: 700;
    font-size: 16px;
}

/* Resources Section */
.resources-section {
    padding: 100px 0;
    background: var(--white);
}

.resources-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.resource-card {
    text-align: center;
    padding: 48px 32px;
    background: var(--secondary-color);
    border-radius: 20px;
    transition: var(--transition);
}

.resource-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.resource-card i {
    font-size: 48px;
    color: var(--accent-color);
    margin-bottom: 24px;
}

.resource-card h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.resource-card p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-secondary);
}

/* Responsive Design */
@media (max-width: 768px) {
    .skills-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .skill-card h3 {
        font-size: 24px;
    }

    .tips-section {
        padding: 24px;
    }

    .resources-grid {
        grid-template-columns: 1fr;
    }
}
