.bronk-opening-hours-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 30px;
}

.location-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(30px, 4vw, 100px);
}

.bronk-opening-hours-h1 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: clamp(15px, 2vw, 30px);
    max-width: 100%;
    white-space: normal;
    word-break: break-word;
}

.opening-hours-contact .day-row {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
}

.opening-hours-contact .day-row .day {
    font-weight: 400;
}

.opening-hours-contact .day-row .hours {
    text-align: right;
    flex: 1;
    min-width: 100px;
}

@media screen and (max-width: 1048px) {
    .bronk-opening-hours-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .location-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media screen and (max-width: 768px) {
    .bronk-opening-hours-grid {
        gap: clamp(20px, 6vw, 50px);
    }

    .location-content {
        gap: clamp(15px, 4vw, 30px);
    }

    .opening-hours-contact .day-row {
        width: 100%;
    }

    .opening-hours-contact .day-row .day,
    .opening-hours-contact .day-row .hours {
        width: auto;
        min-width: 120px;
    }

    .contact.bronk-description {
        word-break: break-word;
    }
}

@media screen and (max-width: 340px) {
    .bronk-opening-hours-grid {
        gap: clamp(15px, 4vw, 20px);
    }

    .location-content {
        gap: clamp(10px, 3vw, 15px);
    }
}

.extra-note {
    margin-top: 15px;
    font-style: italic;
}

.contact-phone,
.contact-email {
    margin-bottom: 10px;
}

.contact.bronk-description a {
    color: #000000;
    text-decoration: none;
} 