/* Event Template Typography and Spacing */

/* Base Content Styles */
.event-content {
    max-width: 100%;
    font-size: 1rem;
    line-height: 1.75;
    color: #475569;
}

/* Headings */
.event-content h2 {
    font-size: clamp(1.5rem, 2vw, 1.875rem);
    font-weight: 700;
    color: #0f172a;
    margin: 2.5rem 0 1.5rem;
    line-height: 1.2;
    letter-spacing: -0.01em;
}

.event-content h3 {
    font-size: clamp(1.25rem, 1.5vw, 1.5rem);
    font-weight: 600;
    color: #1e293b;
    margin: 2rem 0 1rem;
    line-height: 1.3;
}

/* Paragraphs */
.event-content p {
    margin-bottom: 1.25rem;
    color: #475569;
}

.event-content p.lead {
    font-size: clamp(1.125rem, 1.25vw, 1.25rem);
    color: #334155;
    margin-bottom: 2rem;
    line-height: 1.6;
    font-weight: 400;
}

/* Strong and Emphasis */
.event-content strong {
    color: #334155;
    font-weight: 600;
}

.event-content em {
    font-style: italic;
}

/* Lists */
.event-content ul {
    margin: 1.5rem 0 2rem;
    padding-left: 0.5rem;
}

.event-content ul li {
    color: #475569;
    padding-left: 1.5rem;
    position: relative;
    margin-bottom: 0.75rem;
    line-height: 1.6;
}

.event-content ul li::before {
    content: '';
    position: absolute;
    width: 0.375rem;
    height: 0.375rem;
    border-radius: 9999px;
    background-color: rgba(220, 38, 38, 0.6);
    left: 0;
    top: 0.7em;
    transition: background-color 0.2s ease;
}

.event-content ul li:hover::before {
    background-color: rgba(220, 38, 38, 0.8);
}

/* Links */
.event-content a {
    color: #dc2626;
    text-decoration: none;
    transition: color 0.2s ease;
    font-weight: 500;
}

.event-content a:hover {
    color: #b91c1c;
    text-decoration: underline;
}

/* Section Spacing */
.event-content section + section {
    margin-top: 3rem;
    padding-top: 3rem;
    border-top: 1px solid #e2e8f0;
}

/* First and Last Element Spacing */
.event-content > *:first-child {
    margin-top: 0;
}

.event-content > *:last-child {
    margin-bottom: 0;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .event-content {
        font-size: 0.9375rem;
    }
    
    .event-content h2 {
        margin: 2rem 0 1.25rem;
    }
    
    .event-content h3 {
        margin: 1.75rem 0 1rem;
    }
    
    .event-content ul {
        margin: 1.25rem 0 1.75rem;
    }
}