@media (max-width: 768px) {
    .page-full {
        box-sizing: border-box;
        padding-inline: 0.5rem;
    }
    html, body {
        overflow-x: hidden;
    }
}

@media (min-width: 1024px){
    .page {
        margin-top: 5.2rem !important;
    }
}

.entry-title {
    display: none !important;
}

.entry-content, .page-intro, .entry-header {
    color: var(--text-color-comm);
    font-family: Roboto;
}

/* Klachtenpagina */
.complaint-form-wrap, .tip-form-wrap {
    max-width: 560px;
    margin: 2rem auto;
    padding: 2rem;
    background: var(--off-white);
    border: 1px solid var(--off-white);
    border-radius: 12px;
    transition: all 0.2s ease;
}

.complaint-form-wrap:hover, .tip-form-wrap:hover {
    border-color: var(--color-main);
    border-radius: 24px;
}

.entry-content h2 {
    font-size: 1.75rem;
}

.page-title {
    font-size: 1.75rem;
}

.entry-content hr {
    display: none;
}

.form-success {
    background: var(--od-live-programma);
    color: var(--color-main);
    border: 1px solid var(--od-color-light);
    border-radius: 6px;
    padding: 12px 16px;
    margin-bottom: 1.5rem;
    font-size: 14px;
}

.form-field {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 1.25rem;
}

.form-field label {
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-color-dates);
    letter-spacing: 0.01em;
}

.form-field input,
.form-field textarea {
    padding: 10px 14px;
    font-size: 15px;
    font-family: Roboto;
    color: var(--text-color-comm);
    background: var(--od-form-bg);
    border: 1.5px solid var(--od-color-light);
    border-radius: 6px;
    outline: none;
    transition: all 0.2s ease;
    resize: vertical;
    height: 18px;
}

.form-field input:hover,
.form-field textarea:hover {
    border-radius: 24px;
    border-color: var(--color-accent);
    height: 22px;
}

.form-field input:focus,
.form-field textarea:focus {
    border-color: var(--color-accent);
    border-radius: 24px;
    box-shadow: 0 0 0 3px color-mix(in srgb, var(--color-accent) 20%, transparent);
}

.btn-submit {
    display: inline-block;
    padding: 11px 28px;
    background: var(--color-accent);
    color: var(--text-color-on-picture);
    font-size: 15px;
    font-weight: 500;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s ease;
    margin-top: 0.25rem;
}

.btn-submit:hover {
    background: var(--color-main);
    border-radius: 24px;
}

.btn-submit:active {
    transform: scale(0.98);
}

.textarea-field textarea {
    height: 18px;
    transition: all 0.2s ease;
}

.textarea-field textarea:hover {
    height: 70px;
}

.textarea-field textarea:focus {
    height: 150px;
}

.wp-block-file__embed {
    border-radius: 16px;
}