/* Event node styles */
.node--type-evento {
    max-width: 1200px;
    margin: 0 auto;
}

.event-header {
    display: grid;
    gap: 2rem;
    margin-bottom: 2rem;
}

@media (min-width: 768px) {
    .event-header {
        grid-template-columns: 2fr 1fr;
    }
}

.event-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.event-meta {
    background: #f7fafc;
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid #2c5282;
}

.event-meta > div {
    margin-bottom: 1rem;
}

.event-meta .label {
    font-weight: bold;
    color: #2d3748;
    display: inline-block;
    margin-right: 0.5rem;
}

.event-content {
    margin-bottom: 3rem;
}

.event-content h2 {
    color: #2c5282;
    border-bottom: 2px solid #e2e8f0;
    padding-bottom: 0.5rem;
    margin-bottom: 1rem;
}

.event-description,
.event-artists,
.event-location {
    margin-bottom: 2rem;
}

/* Ticket rates form styles */
.fourvenues-ticket-rates-form {
    margin: 2rem 0;
}

.ticket-rates-container {
    display: grid;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.ticket-rate-item {
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 1.5rem;
    background: #f9f9f9;
    transition: box-shadow 0.3s ease;
}

.ticket-rate-item:hover {
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.ticket-rate-item legend {
    font-size: 1.25rem;
    font-weight: bold;
    color: #333;
}

.rate-info {
    margin-bottom: 1rem;
}

.rate-price {
    font-size: 1.5rem;
    color: #2c5282;
    margin-bottom: 0.5rem;
}

.rate-includes,
.rate-additional,
.rate-availability {
    margin: 0.5rem 0;
    color: #666;
    font-size: 0.9rem;
}

.rate-sold-out {
    color: #c53030;
    font-weight: bold;
    padding: 0.5rem;
    background: #fed7d7;
    border-radius: 4px;
    text-align: center;
}

.ticket-quantity {
    max-width: 100px;
}

.ticket-warranty {
    margin-top: 1rem;
}

.form-item-warranty {
    background: #e6fffa;
    padding: 1rem;
    border-radius: 4px;
    border-left: 3px solid #38b2ac;
}

.form-item-warranty .description {
    margin-top: 0.5rem;
    font-size: 0.85rem;
    color: #2c7a7b;
}

.total-container {
    background: #edf2f7;
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
}

.total-price {
    font-size: 1.5rem;
    text-align: right;
}

#total-amount {
    color: #2c5282;
    font-weight: bold;
}

.event-ticket-rates {
    background: #fff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    margin-top: 3rem;
}

.event-ticket-rates h2 {
    color: #2c5282;
    margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
    .ticket-rates-container {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
}