/* presentation.css specific rules */

.presentation-content {
    background: linear-gradient(135deg, rgba(255,255,255,1) 0%, #f9fafb 100%);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(10, 25, 47, 0.08);
    border: 1px solid rgba(212, 175, 55, 0.15);
    position: relative;
    overflow: hidden;
}

.presentation-content::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

.presentation-content h2,
.presentation-content p {
    position: relative;
    z-index: 1;
}

.presentation-content h2 {
    font-size: 2rem;
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.presentation-content h2::before {
    content: '';
    display: inline-block;
    width: 40px;
    height: 3px;
    background-color: var(--gold);
    border-radius: 2px;
}
