/*
Theme Name: meinholz24 Theme
Theme URI: https://meinholz24.de
Author: meinholz24
Author URI: https://meinholz24.de
Description: Custom meinholz24-Theme auf Basis einer Aura-HTML-Datei - Premium Holzhandel
Version: 1.0
Text Domain: meinholz24-theme
License: GPL-2.0-or-later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
*/

/* ============================================
   CUSTOM STYLES - SUPPLEMENTS TAILWIND CSS
   ============================================ */

/* Smooth scrolling for the entire page */
html {
    scroll-behavior: smooth;
}

/* Base body styling */
body {
    font-family: 'Inter', sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Selection styling */
::selection {
    background-color: rgb(255 237 213); /* orange-100 */
    color: rgb(124 45 18); /* orange-900 */
}

/* Custom scrollbar styling */
::-webkit-scrollbar {
    width: 10px;
    height: 10px;
}

::-webkit-scrollbar-track {
    background: #f5f5f4; /* stone-100 */
}

::-webkit-scrollbar-thumb {
    background: #a8a29e; /* stone-400 */
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: #78716c; /* stone-500 */
}

/* Focus visible for accessibility */
:focus-visible {
    outline: 2px solid rgb(194 65 12 / 0.5); /* orange-700 with opacity */
    outline-offset: 2px;
}

/* Smooth transitions for interactive elements */
a,
button,
input,
select,
textarea {
    transition: all 0.2s ease-in-out;
}

/* Custom animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes pulse-subtle {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.8;
    }
}

/* Animation utility classes */
.animate-fade-in-up {
    animation: fadeInUp 0.6s ease-out forwards;
}

.animate-fade-in {
    animation: fadeIn 0.4s ease-out forwards;
}

.animate-slide-in-right {
    animation: slideInRight 0.5s ease-out forwards;
}

/* Staggered animation delays */
.animation-delay-100 { animation-delay: 100ms; }
.animation-delay-200 { animation-delay: 200ms; }
.animation-delay-300 { animation-delay: 300ms; }
.animation-delay-400 { animation-delay: 400ms; }
.animation-delay-500 { animation-delay: 500ms; }

/* Hero section enhancements */
.hero-gradient {
    background: linear-gradient(
        135deg,
        rgba(28, 25, 23, 0.6) 0%,
        rgba(28, 25, 23, 0.3) 50%,
        rgba(28, 25, 23, 0.5) 100%
    );
}

/* Card hover effects */
.card-hover {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card-hover:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* Image zoom effect on hover */
.img-zoom {
    transition: transform 0.7s ease;
}

.img-zoom:hover {
    transform: scale(1.05);
}

/* Gradient overlays */
.gradient-overlay {
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.7) 0%,
        rgba(0, 0, 0, 0.2) 50%,
        transparent 100%
    );
}

/* Button styles */
.btn-primary {
    background-color: #fff;
    color: #1c1917;
    padding: 0.875rem 2rem;
    font-weight: 500;
    border-radius: 0.5rem;
    transition: all 0.2s ease;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.btn-primary:hover {
    background-color: #fafaf9;
    transform: scale(1.02);
}

.btn-secondary {
    background-color: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(4px);
    color: #fff;
    padding: 0.875rem 2rem;
    font-weight: 500;
    border-radius: 0.5rem;
    transition: all 0.2s ease;
}

.btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

/* Form input enhancements */
.input-field {
    transition: all 0.2s ease;
}

.input-field:focus {
    background-color: #fff;
    border-color: #c2410c;
    box-shadow: 0 0 0 3px rgba(194, 65, 12, 0.1);
}

/* Navigation sticky header */
.sticky-header {
    position: sticky;
    top: 0;
    z-index: 50;
    backdrop-filter: blur(12px);
    background-color: rgba(255, 255, 255, 0.9);
}

/* Footer styling */
.footer-link {
    transition: color 0.2s ease;
}

.footer-link:hover {
    color: #c2410c;
}

/* Loading states */
.skeleton {
    background: linear-gradient(
        90deg,
        #f5f5f4 25%,
        #e7e5e4 50%,
        #f5f5f4 75%
    );
    background-size: 200% 100%;
    animation: skeleton-loading 1.5s ease-in-out infinite;
}

@keyframes skeleton-loading {
    0% {
        background-position: 200% 0;
    }
    100% {
        background-position: -200% 0;
    }
}

/* Typography enhancements */
.text-gradient {
    background: linear-gradient(135deg, #c2410c 0%, #ea580c 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Aspect ratio helpers */
.aspect-4-5 {
    aspect-ratio: 4 / 5;
}

.aspect-16-9 {
    aspect-ratio: 16 / 9;
}

/* Print styles */
@media print {
    .no-print {
        display: none !important;
    }

    body {
        font-size: 12pt;
        line-height: 1.5;
    }

    a {
        text-decoration: underline;
    }

    .sticky-header {
        position: relative;
    }
}

/* Reduced motion for accessibility */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    html {
        scroll-behavior: auto;
    }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .btn-primary,
    .btn-secondary {
        border: 2px solid currentColor;
    }

    a:focus,
    button:focus {
        outline: 3px solid currentColor;
    }
}

/* ============================================
   UNIFIED HOVER EFFECTS
   Mouse/pointer devices only — no touch hover
   ============================================ */
@media (hover: hover) {

    /* --- Primary Buttons ---
       Subtle scale + color darken on hover.
       Covers WooCommerce buttons, .btn-primary, submit buttons,
       checkout CTA, and proceed-to-checkout. */
    .btn-primary,
    .woocommerce button.button,
    .woocommerce a.button,
    .woocommerce input.button,
    .woocommerce #respond input#submit,
    .woocommerce #place_order,
    .wc-proceed-to-checkout a.checkout-button {
        transform: scale(1);
    }

    .btn-primary:hover,
    .woocommerce button.button:hover,
    .woocommerce a.button:hover,
    .woocommerce input.button:hover,
    .woocommerce #respond input#submit:hover,
    .woocommerce #place_order:hover,
    .wc-proceed-to-checkout a.checkout-button:hover {
        transform: scale(1.02);
    }

    /* Disabled buttons: no hover effect */
    .woocommerce button.button:disabled:hover,
    .woocommerce button.button.disabled:hover,
    .woocommerce a.button.disabled:hover,
    button:disabled:hover {
        transform: scale(1) !important;
    }

    /* --- Secondary / Outlined Buttons ---
       Same subtle scale for consistency. */
    .btn-secondary {
        transform: scale(1);
    }

    .btn-secondary:hover {
        transform: scale(1.02);
    }

    /* --- Clickable Icons ---
       Slightly larger scale for small icon-only targets.
       .icon-btn = utility class, a.remove = cart delete icon */
    .icon-btn,
    .woocommerce a.remove,
    .cookie-trigger {
        transform: scale(1);
    }

    .icon-btn:hover,
    .woocommerce a.remove:hover,
    .cookie-trigger:hover {
        transform: scale(1.1);
    }

    /* --- Footer & Navigation Links ---
       Smooth color only, never decoration change */
    .footer-link:hover,
    nav a:hover,
    .woocommerce .woocommerce-breadcrumb a:hover {
        text-decoration: none;
    }
}

/* ============================================
   WOOCOMMERCE OVERRIDES - MEINHOLZ24 DESIGN
   ============================================ */

/* WooCommerce Buttons */
.woocommerce button.button,
.woocommerce a.button,
.woocommerce input.button,
.woocommerce #respond input#submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.625rem 1rem;
    border-radius: 0.5rem;
    font-size: 0.875rem;
    font-weight: 500;
    background-color: #A02B2B;
    color: #fff;
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
}

.woocommerce button.button:hover,
.woocommerce a.button:hover,
.woocommerce input.button:hover,
.woocommerce #respond input#submit:hover {
    background-color: #8A2424;
    color: #fff;
}

.woocommerce button.button.alt,
.woocommerce a.button.alt,
.woocommerce input.button.alt {
    background-color: #A02B2B;
    color: #fff;
}

.woocommerce button.button.alt:hover,
.woocommerce a.button.alt:hover,
.woocommerce input.button.alt:hover {
    background-color: #8A2424;
    color: #fff;
}

.woocommerce button.button:disabled,
.woocommerce button.button.disabled,
.woocommerce a.button.disabled {
    opacity: 0.5;
    cursor: not-allowed;
    background-color: #78716c;
}

/* WooCommerce Form Inputs */
.woocommerce form .form-row input.input-text,
.woocommerce form .form-row textarea,
.woocommerce form .form-row select,
.woocommerce-cart table.cart td.actions .coupon .input-text {
    padding: 0.625rem 1rem;
    border: 1px solid #d6d3d1;
    border-radius: 0.5rem;
    font-size: 0.875rem;
    transition: all 0.2s ease;
    background-color: #fff;
}

.woocommerce form .form-row input.input-text:focus,
.woocommerce form .form-row textarea:focus,
.woocommerce form .form-row select:focus,
.woocommerce-cart table.cart td.actions .coupon .input-text:focus {
    outline: none;
    border-color: #A02B2B;
    box-shadow: 0 0 0 3px rgba(160, 43, 43, 0.1);
}

/* WooCommerce Notices */
.woocommerce-message,
.woocommerce-info,
.woocommerce-error {
    padding: 1rem 1.25rem;
    margin-bottom: 1.5rem;
    border-radius: 0.75rem;
    border: none;
    font-size: 0.875rem;
}

.woocommerce-message {
    background-color: #f0fdf4;
    color: #166534;
    border-left: 4px solid #22c55e;
}

.woocommerce-info {
    background-color: #eff6ff;
    color: #1e40af;
    border-left: 4px solid #3b82f6;
}

.woocommerce-error {
    background-color: #fef2f2;
    color: #991b1b;
    border-left: 4px solid #ef4444;
}

.woocommerce-message::before,
.woocommerce-info::before,
.woocommerce-error::before {
    display: none;
}

/* WooCommerce Cart Page Specific */
.woocommerce-cart .woocommerce {
    font-family: 'Inter', sans-serif;
}

/* Hide default WooCommerce cart totals styling - we use custom */
.woocommerce-cart .cart_totals h2 {
    font-size: 1.125rem;
    font-weight: 600;
    color: #1c1917;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #e7e5e4;
}

/* Cart table styling overrides */
.woocommerce table.shop_table {
    border: none;
    border-collapse: collapse;
}

.woocommerce table.shop_table th,
.woocommerce table.shop_table td {
    border: none;
    padding: 1rem;
}

.woocommerce table.shop_table tbody tr {
    border-bottom: 1px solid #f5f5f4;
}

/* Product thumbnail in cart */
.woocommerce-cart table.cart img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 0.5rem;
}

/* Quantity input */
.woocommerce .quantity .qty {
    width: 5rem;
    text-align: center;
    padding: 0.5rem;
    border: 1px solid #d6d3d1;
    border-radius: 0.5rem;
    font-size: 0.875rem;
}

.woocommerce .quantity .qty:focus {
    outline: none;
    border-color: #A02B2B;
    box-shadow: 0 0 0 2px rgba(160, 43, 43, 0.1);
}

/* Remove link in cart */
.woocommerce a.remove {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2rem;
    height: 2rem;
    color: #a8a29e !important;
    background-color: transparent;
    border-radius: 0.5rem;
    font-size: 1.25rem;
    transition: all 0.2s ease;
}

.woocommerce a.remove:hover {
    background-color: #fef2f2 !important;
    color: #dc2626 !important;
}

/* Cart collaterals layout */
.woocommerce-cart .cart-collaterals {
    margin-top: 0;
}

.woocommerce-cart .cart-collaterals .cart_totals {
    width: 100%;
    float: none;
}

/* Hide WooCommerce default cart empty message styling */
.woocommerce-cart .cart-empty.woocommerce-info {
    background: transparent;
    border: none;
    padding: 0;
    text-align: center;
}

/* Shipping calculator styling */
.woocommerce-shipping-calculator .shipping-calculator-button {
    color: #A02B2B;
    font-size: 0.875rem;
    font-weight: 500;
}

.woocommerce-shipping-calculator .shipping-calculator-button:hover {
    color: #8A2424;
    text-decoration: underline;
}

.woocommerce-shipping-calculator .shipping-calculator-form {
    margin-top: 1rem;
    padding: 1rem;
    background-color: #fafaf9;
    border-radius: 0.75rem;
}

/* Coupon form styling */
.woocommerce-cart .coupon {
    display: flex;
    gap: 0.5rem;
}

.woocommerce-cart .coupon label {
    display: none;
}

/* Cross-sells styling */
.woocommerce-cart .cross-sells {
    margin-top: 3rem;
}

.woocommerce-cart .cross-sells h2 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1c1917;
    margin-bottom: 1.5rem;
}

/* Price styling */
.woocommerce .amount {
    font-weight: 500;
    color: #1c1917;
}

/* Sale price styling */
.woocommerce del .amount {
    color: #a8a29e;
    font-weight: 400;
}

.woocommerce ins .amount {
    color: #A02B2B;
    font-weight: 600;
    text-decoration: none;
}

/* Loading overlay */
.woocommerce .blockUI.blockOverlay {
    background-color: rgba(255, 255, 255, 0.7) !important;
}

.woocommerce .blockUI.blockOverlay::before {
    border-color: #A02B2B transparent transparent transparent !important;
}

/* Star ratings */
.woocommerce .star-rating {
    color: #fbbf24;
}

/* Breadcrumbs */
.woocommerce .woocommerce-breadcrumb {
    font-size: 0.75rem;
    color: #78716c;
    margin-bottom: 1.5rem;
}

.woocommerce .woocommerce-breadcrumb a {
    color: #78716c;
    transition: color 0.2s ease;
}

.woocommerce .woocommerce-breadcrumb a:hover {
    color: #1c1917;
}

/* ============================================
   MOBILE RESPONSIVE WOOCOMMERCE STYLES
   ============================================ */

@media (max-width: 639px) {
    /* Cart table - responsive layout */
    .woocommerce table.shop_table_responsive tr {
        display: flex;
        flex-wrap: wrap;
        padding: 1rem 0;
        border-bottom: 1px solid #e7e5e4;
        align-items: flex-start;
    }

    .woocommerce table.shop_table_responsive thead {
        display: none;
    }

    .woocommerce table.shop_table_responsive tr td {
        display: block;
        border: none !important;
        padding: 0.25rem 0 !important;
    }

    .woocommerce table.shop_table_responsive tr td::before {
        display: none !important;
    }

    /* Product image */
    .woocommerce table.shop_table_responsive tr td.product-thumbnail {
        width: 70px;
        flex-shrink: 0;
        margin-right: 0.75rem;
    }

    .woocommerce-cart table.cart img {
        width: 70px;
        height: 70px;
    }

    /* Product name and info */
    .woocommerce table.shop_table_responsive tr td.product-name {
        flex: 1;
        min-width: 0;
        font-size: 0.875rem;
        font-weight: 500;
    }

    .woocommerce table.shop_table_responsive tr td.product-name a {
        display: block;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    /* Price */
    .woocommerce table.shop_table_responsive tr td.product-price {
        width: 100%;
        margin-top: 0.5rem;
        padding-left: calc(70px + 0.75rem) !important;
        font-size: 0.75rem;
        color: #78716c;
    }

    /* Quantity */
    .woocommerce table.shop_table_responsive tr td.product-quantity {
        width: 100%;
        padding-left: calc(70px + 0.75rem) !important;
        margin-top: 0.5rem;
    }

    .woocommerce .quantity .qty {
        width: 4rem;
        padding: 0.5rem;
        font-size: 0.875rem;
    }

    /* Subtotal */
    .woocommerce table.shop_table_responsive tr td.product-subtotal {
        width: 100%;
        padding-left: calc(70px + 0.75rem) !important;
        margin-top: 0.25rem;
        font-weight: 600;
        color: #1c1917;
    }

    /* Remove button */
    .woocommerce table.shop_table_responsive tr td.product-remove {
        position: absolute;
        right: 0;
        top: 1rem;
    }

    .woocommerce table.shop_table_responsive tr {
        position: relative;
    }

    .woocommerce a.remove {
        width: 1.75rem;
        height: 1.75rem;
        font-size: 1rem;
    }

    /* Actions row (coupon + update) */
    .woocommerce table.shop_table_responsive tr td.actions {
        width: 100%;
        padding: 1rem 0 !important;
    }

    .woocommerce-cart .coupon {
        flex-direction: column;
        width: 100%;
    }

    .woocommerce-cart table.cart td.actions .coupon .input-text {
        width: 100%;
        margin-bottom: 0.5rem;
    }

    .woocommerce-cart table.cart td.actions .coupon .button {
        width: 100%;
    }

    .woocommerce table.shop_table_responsive tr td.actions .coupon {
        margin-bottom: 0.75rem;
    }

    .woocommerce table.shop_table_responsive tr td.actions button[name="update_cart"] {
        width: 100%;
    }

    /* Cart totals mobile */
    .woocommerce-cart .cart_totals {
        margin-top: 1.5rem;
    }

    .woocommerce-cart .cart_totals h2 {
        font-size: 1rem;
        margin-bottom: 1rem;
        padding-bottom: 0.75rem;
    }

    .woocommerce-cart .cart_totals table th,
    .woocommerce-cart .cart_totals table td {
        padding: 0.75rem 0;
        font-size: 0.875rem;
    }

    /* Proceed to checkout button */
    .woocommerce-cart .wc-proceed-to-checkout a.checkout-button {
        width: 100%;
        padding: 1rem;
        font-size: 1rem;
    }

    /* Empty cart styling */
    .wc-empty-cart-message {
        padding: 3rem 1rem !important;
    }

    .wc-empty-cart-message h2 {
        font-size: 1.25rem !important;
    }

    .wc-empty-cart-message .grid-cols-3 {
        grid-template-columns: repeat(3, 1fr);
        gap: 0.5rem;
    }

    .wc-empty-cart-message .grid-cols-3 .w-10 {
        width: 2rem;
        height: 2rem;
    }

    .wc-empty-cart-message .grid-cols-3 svg {
        width: 14px;
        height: 14px;
    }

    .wc-empty-cart-message .grid-cols-3 span {
        font-size: 0.625rem;
    }

    /* WooCommerce notices */
    .woocommerce-message,
    .woocommerce-info,
    .woocommerce-error {
        padding: 0.75rem 1rem;
        font-size: 0.8125rem;
        margin-bottom: 1rem;
    }

    /* Buttons */
    .woocommerce button.button,
    .woocommerce a.button,
    .woocommerce input.button {
        padding: 0.75rem 1rem;
        font-size: 0.8125rem;
    }
}

/* ============================================
   SINGLE POST: ARTIKEL-TYPOGRAFIE & SIDEBAR
   ============================================ */

.mh24-article-body {
    color: #44403C;
    font-size: 1.0625rem;
    line-height: 1.75;
}
.mh24-article-body > * + * { margin-top: 1.25em; }
.mh24-article-body p { margin: 0 0 1.25em 0; }
.mh24-article-body p:last-child { margin-bottom: 0; }
.mh24-article-body h2 {
    font-size: 1.625rem;
    font-weight: 600;
    color: #1C1917;
    letter-spacing: -0.01em;
    line-height: 1.3;
    margin: 2.5em 0 0.75em 0;
    padding-bottom: 0.5em;
    border-bottom: 1px solid #F5F5F4;
    scroll-margin-top: 6rem;
}
.mh24-article-body h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1C1917;
    letter-spacing: -0.01em;
    margin: 2em 0 0.5em 0;
    scroll-margin-top: 6rem;
}
.mh24-article-body h4 {
    font-size: 1.0625rem;
    font-weight: 600;
    color: #1C1917;
    margin: 1.75em 0 0.5em 0;
}
.mh24-article-body a {
    color: #A02B2B;
    text-decoration: none;
    border-bottom: 1px solid rgba(160, 43, 43, 0.25);
    transition: border-color 0.15s ease, color 0.15s ease;
}
.mh24-article-body a:hover { border-color: #A02B2B; color: #7A2020; }
.mh24-article-body strong { color: #1C1917; font-weight: 600; }
.mh24-article-body em { font-style: italic; }
.mh24-article-body ul, .mh24-article-body ol {
    margin: 1.25em 0;
    padding-left: 1.5em;
    color: #44403C;
}
.mh24-article-body ul { list-style: disc; }
.mh24-article-body ol { list-style: decimal; }
.mh24-article-body li { margin: 0.5em 0; padding-left: 0.25em; }
.mh24-article-body li::marker { color: #A02B2B; }
.mh24-article-body blockquote {
    margin: 1.75em 0;
    padding: 1rem 1.25rem 1rem 1.5rem;
    border-left: 3px solid #A02B2B;
    background: #FAFAF9;
    border-radius: 0 0.5rem 0.5rem 0;
    color: #44403C;
    font-style: normal;
}
.mh24-article-body blockquote p:last-child { margin-bottom: 0; }
.mh24-article-body code {
    background: #F5F5F4;
    color: #A02B2B;
    padding: 0.15em 0.4em;
    border-radius: 0.25rem;
    font-size: 0.9em;
    font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
}
.mh24-article-body pre {
    background: #1C1917;
    color: #FAFAF9;
    padding: 1.25rem;
    border-radius: 0.75rem;
    overflow-x: auto;
    margin: 1.5em 0;
    font-size: 0.875rem;
    line-height: 1.6;
}
.mh24-article-body pre code { background: none; color: inherit; padding: 0; }
.mh24-article-body img {
    max-width: 100%;
    height: auto;
    border-radius: 0.75rem;
    margin: 1.75em 0;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}
.mh24-article-body figure { margin: 1.75em 0; }
.mh24-article-body figure img { margin: 0; }
.mh24-article-body figcaption {
    font-size: 0.875rem;
    color: #78716C;
    text-align: center;
    margin-top: 0.5rem;
}
.mh24-article-body hr {
    border: none;
    border-top: 1px solid #E7E5E4;
    margin: 2.5em 0;
}
.mh24-article-body table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.75em 0;
    font-size: 0.9375rem;
}
.mh24-article-body th, .mh24-article-body td {
    padding: 0.75rem 1rem;
    text-align: left;
    border-bottom: 1px solid #E7E5E4;
}
.mh24-article-body th {
    background: #FAFAF9;
    font-weight: 600;
    color: #1C1917;
}
.mh24-article-body :first-child { margin-top: 0; }
.mh24-article-body :last-child { margin-bottom: 0; }

/* TOC */
#mh24-toc-list { list-style: none; margin: 0; padding: 0; }
#mh24-toc-list .mh24-toc-main > a,
#mh24-toc-list .mh24-toc-sub > a {
    display: block;
    color: #57534E;
    border-left: 2px solid #F5F5F4;
    padding: 0.35rem 0 0.35rem 0.75rem;
    line-height: 1.4;
    text-decoration: none;
    transition: color 0.15s, border-color 0.15s;
    font-size: 0.875rem;
}
#mh24-toc-list .mh24-toc-sub > a {
    padding-left: 1.5rem;
    font-size: 0.8125rem;
    color: #78716C;
}
#mh24-toc-list a:hover {
    color: #A02B2B;
    border-left-color: #A02B2B;
}

/* Sidebar CTA hover (Tailwind arbitrary-hover Klassen sind nicht im Build) */
.mh24-cta-primary:hover { background-color: #7A2020; }
.mh24-cta-secondary:hover { border-color: #A8A29E; }
.mh24-hover-rose-tint:hover { background-color: #EBD0D0; }
