/* Hover/keyboard dropdowns for the main navigation. */
.has-submenu > .submenu {
    display: none;
}
.has-submenu:hover > .submenu,
.has-submenu:focus-within > .submenu {
    display: block;
}

/* Default styling for article body content. */
.page-content h2 {
    font-family: "Playfair Display", serif;
    font-weight: 700;
    font-size: 1.5rem;
    line-height: 1.3;
    color: rgb(33 33 38);
    margin-top: 2rem;
    margin-bottom: 0.75rem;
}
.page-content h3 {
    font-family: "Playfair Display", serif;
    font-weight: 600;
    font-size: 1.2rem;
    line-height: 1.3;
    color: rgb(33 33 38);
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
}
.page-content p {
    margin-bottom: 1rem;
}
.page-content ul {
    list-style: disc;
    padding-left: 1.5rem;
    margin-bottom: 1rem;
}
.page-content ol {
    list-style: decimal;
    padding-left: 1.5rem;
    margin-bottom: 1rem;
}
.page-content li {
    margin-bottom: 0.25rem;
}
.page-content a {
    color: rgb(56 142 96);
    text-decoration: underline;
}
.page-content a:hover {
    color: rgb(43 116 78);
}
.page-content strong {
    color: rgb(33 33 38);
    font-weight: 600;
}
.page-content blockquote {
    border-left: 4px solid rgb(56 142 96);
    padding: 0.5rem 0 0.5rem 1rem;
    margin: 1.5rem 0;
    font-style: italic;
    color: rgb(75 75 82);
}
.page-content .lead {
    font-size: 1.125rem;
    color: rgb(75 75 82);
    margin-bottom: 1.5rem;
}

/* Two-column image+text block used on Räume page. */
.page-content .room-section {
    margin-top: 2rem;
    margin-bottom: 1rem;
}
.page-content .room-section > img {
    border-radius: 0.75rem;
    width: 100%;
    height: auto;
}
.page-content .room-section h2 {
    margin-top: 0;
}
@media (min-width: 768px) {
    .page-content .room-section {
        grid-template-columns: 1fr 3fr;
    }
}

/* Compact heading inside link cards on the dermatologie overview. */
.page-content .topic-card h2 {
    margin-top: 0;
    margin-bottom: 0;
    font-size: 1.125rem;
}

/* Lift the medatixx booking overlay above the sticky nav (z-40). The plugin
   hard-codes z-index: 17 inline, so we override with !important. */
.terminbuchung-overlay {
    z-index: 100 !important;
}

/* Strip the default disclosure triangle from <summary> in the mobile menu. */
.mobile-menu-summary {
    list-style: none;
}
.mobile-menu-summary::-webkit-details-marker {
    display: none;
}
/* Rotate the chevron when the mobile-menu group is open. */
details[open] > .mobile-menu-summary .mobile-menu-chevron {
    transform: rotate(180deg);
}
