<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@media only screen and (min-width: 950px) {
    .content-container {
        width: 100%;
        max-width: none;
        padding-bottom: 64px;
    }

    .header-image {
        width: 600px;
    }

    .info-container {
        max-width: 900px;
    }

    .event-content {
        width: 90%;
        max-width: 900px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        border-top: 2px solid #fafafa;
        flex-wrap: wrap;
    }

    .event-date {
        font-size: 32px;
    }

    .event-title {
        font-size: 24px;
    }

    .event-info {
        font-size: 16px;
    }

    .event-container {
        border: none;
        width: 100%;
        margin: 0;
        transition: all 0.3s ease-in-out;
        border-bottom:  1px solid #f2e8d9;
    }

    .event-container:hover{
        transform: scale(1.05);
        border-top: 1px solid #f2e8d9;
    }

    .event-info-container {
        width: none;
    }

    .ticket-button-container {
        width: none;
    }
  }

@media only screen and (max-width: 750px) {
    .body-container {
        width: 95%;
    }

    .event-content {
        width: 95%;
    }

    .event-title {
        font-size: 18px;
    }
    
    .event-info {
        font-size: 12px;
    }

    .event-subtitle {
        font-size: 12px;
        margin-left: 0px;
    }

}

@media only screen and (max-width: 600px) {

    .event-date {
        font-size: 16px;
        font-weight: bold;
    }

    .event-info {
        font-size: 12px;
    }

    .event-container {
        padding: 4px 8px;
        align-items: normal;
    }

    .header-container {
        width: 100%;
    }

    .content-container {
        width: 100%;
        margin: 0 auto;
        padding-bottom: 32px;
    }

  }

  @media only screen and (max-width: 430px) {

    .event-content {
        width: 100%;
    }

    .event-info-container {
        padding-left: 8px;
    }

    .event-title {
        font-size: 16px;
    }

    .event-subtitle {
        font-size: 8px;
    }
    
    .event-info {
        font-size: 8px;
    }
  }</pre></body></html>