.tickets-by-month {
color: #d4d4d4;
padding: 40px 20px;
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
} .tickets-month {
margin-bottom: 40px;
}
.tickets-month__title {
color: #d4d4d4;
font-size: 1.8em;
font-weight: 300;
margin-bottom: 30px;
padding-bottom: 15px;
border-bottom: 1px solid #444;
text-transform: uppercase;
letter-spacing: 1px;
} .tickets-grid {
display: grid;
gap: 20px;
grid-template-columns: 1fr;
max-width: 1200px;
} .ticket-card {
display: flex;
background-color: #2d2d30;
border: 1px solid #3e3e42;
border-radius: 8px;
overflow: hidden;
transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.ticket-card:hover {
transform: translateY(-2px);
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
} .ticket-card__date-block {
flex-shrink: 0;
width: 100px;
background-color: #252526;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
padding: 20px 15px;
border-right: 1px solid #3e3e42;
text-align: center;
}
.ticket-card__day-of-week {
font-size: 0.85em;
font-weight: 600;
color: #858585;
text-transform: uppercase;
letter-spacing: 1px;
margin-bottom: 8px;
}
.ticket-card__day-number {
font-size: 3em;
font-weight: 700;
color: #e06c75;
line-height: 1;
} .ticket-card__content-wrapper {
flex-grow: 1;
padding: 25px;
display: flex;
flex-direction: column;
} .ticket-card__link {
text-decoration: none !important;
color: inherit;
display: block;
flex-grow: 1;
display: flex;
flex-direction: row;
gap: 10px;
}
.ticket-card__link:hover .ticket-card__title {
color: #ff7b86 !important;
}
.ticket-card__content {
display: flex;
flex-direction: column;
gap: 10px;
} .ticket-card__dates {
font-size: 0.9em;
color: #858585;
margin-bottom: 8px;
font-weight: 500;
} .ticket-card__title {
font-size: 1.5em;
font-weight: 600;
color: #e06c75 !important;
margin: 0 0 12px 0;
line-height: 1.3;
transition: color 0.2s ease;
} .ticket-card__location {
font-size: 0.95em;
color: #858585;
margin-bottom: 15px;
font-style: italic;
} .ticket-card__description {
font-size: 1em;
line-height: 1.6;
color: #d4d4d4;
margin-bottom: 20px;
}
.ticket-card__description p:last-child {
margin-bottom: 0;
} .ticket-card__price {
font-size: 1.3em;
font-weight: 700;
color: #61afef;
margin-bottom: 15px;
} .ticket-card__btn.button {
background-color: #e06c75;
color: #ffffff;
border: none;
padding: 12px 24px;
border-radius: 5px;
text-decoration: none;
text-align: center;
display: inline-block;
font-size: 1em;
font-weight: 600;
cursor: pointer;
transition: background-color 0.3s ease;
align-self: flex-start;
}
.ticket-card__btn.button:hover {
background-color: #be5a64;
color: #ffffff;
} @media (max-width: 768px) {
.ticket-card {
flex-direction: column;
}
.ticket-card__date-block {
width: 100%;
flex-direction: row;
justify-content: center;
gap: 15px;
border-right: none;
border-bottom: 1px solid #3e3e42;
padding: 15px;
}
.ticket-card__day-of-week {
margin-bottom: 0;
font-size: 1.2em;
}
.ticket-card__day-number {
font-size: 2em;
}
.ticket-card__content-wrapper {
padding: 20px;
}
}