.active-ticket-field {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    padding: 0 1rem;
}

.active-ticket-field .active-field {
    position: relative;
    overflow: hidden;
}

.active-ticket-field .active-field-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.3s ease;
    z-index: 0;
}

.active-ticket-field .active-field-content {
    position: relative;
    width: 100%;
    height: 100%;
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.active-ticket-field .field-content {
    padding: 1rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    height: 100%;
}

.active-ticket-field .active-field-2 .field-header,
.active-ticket-field .active-field-3 .field-header {
    font-family: "Saira Condensed", sans-serif;
    font-size: 2rem;
    font-weight: 700;
    text-transform: uppercase;
    line-height: 1;
    margin-bottom: 0.75rem;
}

.active-ticket-field .active-field-2 .field-text,
.active-ticket-field .active-field-3 .field-text {
    font-family: "Kumbh Sans", sans-serif;
    font-size: 0.75rem;
    text-transform: uppercase;
    font-weight: 300;
    line-height: 1.2;
    margin-bottom: 0;
}

.active-ticket-field .active-field-2 .text-bg,
.active-ticket-field .active-field-3 .text-bg {
    display: inline-block;
    padding: 0.25rem 0.5rem;
}

.active-ticket-field .next-match-header {
    text-align: center;
    margin-bottom: 0.5rem;
}

.active-ticket-field .next-match-header .next-match-title {
    font-family: "Saira Condensed", sans-serif;
    font-size: 1.25rem;
    line-height: 1.5rem;
    font-weight: 700;
    text-transform: uppercase;
    margin: 0 0 0.25rem 0;
    display: block;
}

.active-ticket-field .next-match-header .next-match-date {
    font-family: "Kumbh Sans", sans-serif;
    font-size: 1rem;
    color: #fff;
    font-weight: 700;
    text-transform: uppercase;
    display: block;
}

.active-ticket-field .next-match-teams {
    text-align: center;
    flex-grow: 0.25;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 100px;
}

.active-ticket-field .next-match-teams .teams-logos {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 0;
}

.active-ticket-field .next-match-teams .team-wrapper {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0;
}

.active-ticket-field .next-match-teams .next-match-logo {
    width: 50px;
    height: 50px;
    object-fit: contain;
}

.active-ticket-field .next-match-teams .team-name {
    font-family: "Saira Condensed", sans-serif;
    font-size: 2.5rem;
    line-height: 4rem;
    color: #fff;
    margin-right: 66px;
}

.active-ticket-field .next-match-countdown {
    text-align: center;
    white-space: nowrap;
}

.active-ticket-field .next-match-countdown .countdown-label {
    font-family: "Kumbh Sans", sans-serif;
    font-size: 0.875rem;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.2rem;
    line-height: 1.125rem;
    font-weight: 300;
}

.active-ticket-field .next-match-countdown .countdown-time {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.active-ticket-field .countdown-unit {
    text-align: center;
    min-width: 3.5rem;
}

.active-ticket-field .countdown-number {
    font-family: "Kumbh Sans", sans-serif;
    font-size: 1.75rem;
    line-height: 2rem;
    font-weight: 700;
    color: #fff;
    display: block;
}

.active-ticket-field .countdown-text {
    font-family: "Kumbh Sans", sans-serif;
    font-size: 0.75rem;
    color: #ccc;
    display: block;
    text-transform: uppercase;
    font-weight: 300;
}

.active-ticket-field .active-field a {
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
}

.active-ticket-field .active-field-1 {
    flex: 0 0 50%;
    aspect-ratio: 2 / 1;
}

.active-ticket-field .active-field-2,
.active-ticket-field .active-field-3 {
    flex: 0 0 25%;
    aspect-ratio: 1 / 1;
}

.active-field-1 {
    padding: 1rem;
}

@media (max-width: 1000px) {
    .active-ticket-field {
        gap: 0;
        padding: 0 1rem;
        margin: 0;
    }
    .active-ticket-field .active-field {
        margin: 0;
        padding: 0;
    }
    .active-ticket-field .active-field-1 {
        flex: 0 0 100%;
        width: 100%;
        padding: 0.5rem;
    }
    .active-ticket-field .active-field-2,
    .active-ticket-field .active-field-3 {
        flex: 0 0 50%;
        width: 50%;
    }
}

@media (min-width: 1001px) {
    .active-ticket-field .active-field:hover .active-field-background img.background-image {
        transform: scale(1.05);
    }
}

@media (max-width: 360px) {
    .active-ticket-field .field-content,
    .active-ticket-field .active-field-2 .field-content,
    .active-ticket-field .active-field-3 .field-content {
        padding: 0.25rem;
    }
    .active-ticket-field .active-field-2 .field-header,
    .active-ticket-field .active-field-3 .field-header {
        font-size: 1rem;
        line-height: 1;
        margin-bottom: 0.35rem;
    }
    .active-ticket-field .active-field-2 .field-text,
    .active-ticket-field .active-field-3 .field-text {
        font-size: 0.5rem;
        line-height: 1.2;
    }
    .active-ticket-field .active-field-2 .text-bg,
    .active-ticket-field .active-field-3 .text-bg {
        padding: 0.25rem 0.5rem;
    }
    .active-ticket-field .next-match-header {
        text-align: center;
        margin-bottom: 0.125rem;
    }
    .active-ticket-field .next-match-header .next-match-title {
        font-size: 0.75rem;
        line-height: 1rem;
        margin: 0 0 0.125rem 0;
    }
    .active-ticket-field .next-match-header .next-match-date {
        font-size: 0.5rem;
        line-height: 0.75rem;
    }
    .active-ticket-field .next-match-teams {
        flex-grow: 0.125;
        min-height: 25px;
    }
    .active-ticket-field .next-match-teams .teams-logos {
        margin-bottom: 0;
    }
    .active-ticket-field .next-match-teams .team-wrapper {
        margin-bottom: 0;
    }
    .active-ticket-field .next-match-teams .next-match-logo {
        width: 25px;
        height: 25px;
    }
    .active-ticket-field .next-match-teams .team-name {
        font-size: 1.25rem;
        line-height: 1.5rem;
        margin-right: 41px;
    }
    .active-ticket-field .next-match-countdown .countdown-label {
        font-size: 0.5rem;
        line-height: 0.625rem;
    }
    .active-ticket-field .countdown-number {
        font-size: 1rem;
        line-height: 1.25rem;
    }
    .active-ticket-field .countdown-text {
        font-size: 0.5rem;
    }
    .active-ticket-field .countdown-unit {
        min-width: 2.5rem;
    }
    .active-field-1 {
        padding: 0.25rem;
    }
}

@media (min-width: 361px) and (max-width: 480px) {
    .active-ticket-field .field-content,
    .active-ticket-field .active-field-2 .field-content,
    .active-ticket-field .active-field-3 .field-content {
        padding: 0.75rem;
    }
    .active-ticket-field .active-field-2 .field-header,
    .active-ticket-field .active-field-3 .field-header {
        font-size: 1rem;
        line-height: 1;
        margin-bottom: 0.35rem;
    }
    .active-ticket-field .active-field-2 .field-text,
    .active-ticket-field .active-field-3 .field-text {
        font-size: 0.6rem;
        line-height: 1.2;
    }
    .active-ticket-field .active-field-2 .text-bg,
    .active-ticket-field .active-field-3 .text-bg {
        padding: 0.25rem 0.5rem;
    }
    .active-ticket-field .next-match-header {
        text-align: center;
        margin-bottom: 0.25rem;
    }
    .active-ticket-field .next-match-header .next-match-title {
        font-size: 1rem;
        line-height: 1.25rem;
        margin: 0 0 0.125rem 0;
    }
    .active-ticket-field .next-match-header .next-match-date {
        font-size: 0.6rem;
        line-height: 0.75rem;
    }
    .active-ticket-field .next-match-teams {
        flex-grow: 0.125;
        min-height: 25px;
    }
    .active-ticket-field .next-match-teams .teams-logos {
        margin-bottom: 0;
    }
    .active-ticket-field .next-match-teams .team-wrapper {
        margin-bottom: 0;
    }
    .active-ticket-field .next-match-teams .next-match-logo {
        width: 25px;
        height: 25px;
    }
    .active-ticket-field .next-match-teams .team-name {
        font-size: 1.25rem;
        line-height: 1.5rem;
        margin-right: 41px;
    }
    .active-ticket-field .next-match-countdown .countdown-label {
        font-size: 0.625rem;
        line-height: 0.75rem;
    }
    .active-ticket-field .countdown-number {
        font-size: 1.25rem;
        line-height: 1.5rem;
    }
    .active-ticket-field .countdown-text {
        font-size: 0.625rem;
    }
    .active-ticket-field .countdown-unit {
        min-width: 3rem;
    }
    .active-field-1 {
        padding: 0.25rem;
    }
}

@media (min-width: 481px) and (max-width: 640px) {
    .active-ticket-field .field-content,
    .active-ticket-field .active-field-2 .field-content,
    .active-ticket-field .active-field-3 .field-content {
        padding: 0.75rem;
    }
    .active-ticket-field .active-field-2 .field-header,
    .active-ticket-field .active-field-3 .field-header {
        font-size: 1.25rem;
        line-height: 1;
        margin-bottom: 0.35rem;
    }
    .active-ticket-field .active-field-2 .field-text,
    .active-ticket-field .active-field-3 .field-text {
        font-size: 1rem;
        line-height: 1.2;
    }
    .active-ticket-field .active-field-2 .text-bg,
    .active-ticket-field .active-field-3 .text-bg {
        padding: 0.25rem 0.5rem;
    }
    .active-ticket-field .next-match-header {
        text-align: center;
        margin-bottom: 0.25rem;
    }
    .active-ticket-field .next-match-header .next-match-title {
        font-size: 1.25rem;
        line-height: 1.625rem;
        margin: 0 0 0.125rem 0;
    }
    .active-ticket-field .next-match-header .next-match-date {
        font-size: 0.75rem;
        line-height: 1rem;
    }
    .active-ticket-field .next-match-teams {
        flex-grow: 0.125;
        min-height: 50px;
    }
    .active-ticket-field .next-match-teams .teams-logos {
        margin-bottom: 0;
    }
    .active-ticket-field .next-match-teams .team-wrapper {
        margin-bottom: 0;
    }
    .active-ticket-field .next-match-teams .team-name {
        font-size: 1.75rem;
        line-height: 2rem;
        margin-right: 66px;
    }
    .active-ticket-field .next-match-countdown .countdown-label {
        font-size: 0.75rem;
        line-height: 0.875rem;
    }
    .active-ticket-field .countdown-number {
        font-size: 1.5rem;
        line-height: 1.75rem;
    }
    .active-ticket-field .countdown-text {
        font-size: 0.625rem;
    }
    .active-field-1 {
        padding: 0.5rem;
    }
}

@media (min-width: 641px) and (max-width: 1000px) {
    .active-ticket-field .field-content,
    .active-ticket-field .active-field-2 .field-content,
    .active-ticket-field .active-field-3 .field-content {
        padding: 1rem;
    }
    .active-ticket-field .active-field-2 .field-header,
    .active-ticket-field .active-field-3 .field-header {
        font-size: 1.75rem;
        line-height: 1;
        margin-bottom: 0.35rem;
    }
    .active-ticket-field .active-field-2 .field-text,
    .active-ticket-field .active-field-3 .field-text {
        font-size: 1.25rem;
        line-height: 1.2;
    }
    .active-ticket-field .active-field-2 .text-bg,
    .active-ticket-field .active-field-3 .text-bg {
        padding: 0.25rem 0.5rem;
    }
    .active-ticket-field .next-match-header {
        text-align: center;
        margin-bottom: 0.5rem;
    }
    .active-ticket-field .next-match-header .next-match-title {
        font-size: 1.5rem;
        line-height: 1.875rem;
        margin: 0 0 0.125rem 0;
    }
    .active-ticket-field .next-match-header .next-match-date {
        font-size: 0.875rem;
        line-height: 1.125rem;
    }
    .active-ticket-field .next-match-teams {
        flex-grow: 0.25;
        min-height: 100px;
    }
    .active-ticket-field .next-match-teams .teams-logos {
        margin-bottom: 0;
    }
    .active-ticket-field .next-match-teams .team-wrapper {
        margin-bottom: 0;
    }
    .active-ticket-field .next-match-teams .team-name {
        font-size: 2rem;
        line-height: 2.5rem;
        margin-right: 66px;
    }
    .active-ticket-field .next-match-countdown .countdown-label {
        font-size: 0.875rem;
        line-height: 1rem;
    }
    .active-ticket-field .countdown-number {
        font-size: 1.75rem;
        line-height: 2rem;
    }
    .active-ticket-field .countdown-text {
        font-size: 0.75rem;
    }
    .active-field-1 {
        padding: 0.5rem;
    }
}

@media (min-width: 1001px) and (max-width: 1280px) {
    .active-ticket-field .field-content,
    .active-ticket-field .active-field-2 .field-content,
    .active-ticket-field .active-field-3 .field-content {
        padding: 0.75rem;
    }
    .active-ticket-field .active-field-2 .field-header,
    .active-ticket-field .active-field-3 .field-header {
        font-size: 1.25rem;
        line-height: 1;
        margin-bottom: 0.35rem;
    }
    .active-ticket-field .active-field-2 .field-text,
    .active-ticket-field .active-field-3 .field-text {
        font-size: 0.75rem;
        line-height: 1.2;
    }
    .active-ticket-field .active-field-2 .text-bg,
    .active-ticket-field .active-field-3 .text-bg {
        padding: 0.25rem 0.5rem;
    }
    .active-ticket-field .next-match-header {
        text-align: center;
        margin-bottom: 0.25rem;
    }
    .active-ticket-field .next-match-header .next-match-title {
        font-size: 1.25rem;
        line-height: 1.5rem;
        margin: 0 0 0.125rem 0;
    }
    .active-ticket-field .next-match-header .next-match-date {
        font-size: 0.75rem;
        line-height: 1rem;
    }
    .active-ticket-field .next-match-teams {
        flex-grow: 0.125;
        min-height: 50px;
    }
    .active-ticket-field .next-match-teams .teams-logos {
        margin-bottom: 0;
    }
    .active-ticket-field .next-match-teams .team-wrapper {
        margin-bottom: 0;
    }
    .active-ticket-field .next-match-teams .team-name {
        font-size: 1.75rem;
        line-height: 2rem;
        margin-right: 66px;
    }
    .active-ticket-field .next-match-countdown .countdown-label {
        font-size: 0.75rem;
        line-height: 0.875rem;
    }
    .active-ticket-field .countdown-number {
        font-size: 1.5rem;
        line-height: 1.75rem;
    }
    .active-ticket-field .countdown-text {
        font-size: 0.625rem;
    }
    .active-field-1 {
        padding: 0.5rem;
    }
}