/**
 * HWK KI-Assistenten - Corporate Design Stylesheet
 * =================================================
 * EXAKT basierend auf HWK Musterstadt main_min.css
 */

/* ============================================
   1. HWK FARBPALETTE (EXAKT aus main_min.css)
   ============================================ */
:root {
    /* HWK Blau Dunkel */
    --hwk-blue-dark: #073070;
    --hwk-blue-dark-75: #456494;
    --hwk-blue-dark-50: #8397b7;
    --hwk-blue-dark-25: #c1cbdb;
    
    /* HWK Blau Hell */
    --hwk-blue-light: #408fe5;
    --hwk-blue-light-75: #70abec;
    --hwk-blue-light-50: #a0c7f2;
    --hwk-blue-light-25: #d0e3f9;
    
    /* HWK Grün */
    --hwk-green-dark: #409318;
    --hwk-green-dark-75: #70ae52;
    --hwk-green-light: #abd700;
    --hwk-green-light-75: #c0e140;
    
    /* HWK Orange/Gelb */
    --hwk-orange: #ff8d25;
    --hwk-orange-75: #ffb366;
    --hwk-yellow: #ffc51a;
    --hwk-yellow-75: #fcd86e;
    
    /* HWK Rot */
    --hwk-red-dark: #b8003f;
    --hwk-red-dark-75: #ca406f;
    --hwk-red-light: #ee004a;
    --hwk-red-light-75: #f24077;
    
    /* Grautöne */
    --hwk-grey-light: #ccc;
    --hwk-grey: #999;
    --hwk-grey-dark: #444;
    --hwk-black: #252525;
    
    /* Hintergrund */
    --bg-body: #f3f6fa;
    --bg-white: #fff;
    
    /* HWK Box-Shadows (EXAKT!) */
    --shadow-default: 1px 1px 6px rgba(127, 127, 127, 0.3);
    --shadow-hover: 1px 1px 12px rgba(127, 127, 127, 0.6);
    --shadow-active: 1px 1px 4px rgba(127, 127, 127, 0.8);
    --shadow-header: 0 2px 4px 0 rgba(0, 0, 0, 0.2);
}


/* ============================================
   2. RESET & BASIS
   ============================================ */
*, *::before, *::after {
    box-sizing: border-box;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', 'TheSans', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 16px;
    line-height: 1.5;
    color: var(--hwk-black);
    background-color: var(--bg-body);
    margin: 0;
    padding: 0;
    min-height: 100vh;
    -webkit-font-smoothing: antialiased;
}


/* ============================================
   3. HWK LINK-STYLES (EXAKT!)
   ============================================ */
/* Standard-Links: gestrichelte Linie + Hover-Hintergrund */
a:not(.a-not-common),
button.btn-link {
    color: var(--hwk-grey-dark);
    text-decoration: none;
    border-bottom: 1px dotted #444;
}

a:not(.a-not-common):hover,
a:not(.a-not-common):focus,
a:not(.a-not-common):active,
button.btn-link:hover,
button.btn-link:focus {
    text-decoration: none;
    background-color: var(--hwk-blue-light-25);
}

/* Links OHNE gestrichelte Linie */
.navbar-fixed-top a,
.dropdown a,
.listgroup-wrapper a,
.carousel a,
.panel-heading a,
.section-teaser a,
.site-footer a,
a.btn,
a.no-underline,
.card a,
.assistant-card,
.teaser-box a,
.nav a,
.header a {
    border-bottom: none;
}

.navbar-fixed-top a:hover,
.dropdown a:hover,
.listgroup-wrapper a:hover,
a.btn:hover,
a.no-underline:hover,
.card a:hover,
.nav a:hover,
.header a:hover {
    background-color: transparent;
}


/* ============================================
   4. HWK TYPOGRAFIE
   ============================================ */
h1, h2, h3, h4, .h1, .h2, .h3, .h4 {
    margin-top: 0;
    color: var(--hwk-black);
    font-weight: 700;
    line-height: 1.25;
}

h5, h6, .h5, .h6 {
    font-size: 20px;
    margin: 0;
    padding-bottom: 0;
    color: var(--hwk-grey-dark);
    font-weight: 700;
    line-height: 1.25;
}

h1, .h1 { font-size: 36px; margin-bottom: 25px; }
h2, .h2 { font-size: 28px; margin-bottom: 20px; }
h3, .h3 { font-size: 24px; margin-bottom: 12px; }
h4, .h4 { font-size: 20px; margin-bottom: 12px; }

/* HWK Topline-Pattern (farbige Überschrift über Hauptüberschrift) */
h1 span:not([class]),
h2 span:not([class]),
h3 span:not([class]),
.h1 span:not([class]),
.h2 span:not([class]),
.h3 span:not([class]) {
    font-size: 16px;
    color: var(--hwk-blue-light);
    display: block;
    margin-bottom: 7px;
}

h4 span:not([class]),
h5 span:not([class]),
h6 span:not([class]),
.h4 span:not([class]),
.h5 span:not([class]),
.h6 span:not([class]) {
    font-size: 14px;
    color: var(--hwk-blue-light);
    display: block;
    margin-bottom: 5px;
}

p {
    font-size: 20px;
    margin-bottom: 0;
    padding-bottom: 12px;
    line-height: 1.5;
}

.small {
    font-size: 16px;
    line-height: 1.4;
}


/* ============================================
   5. HWK HEADER (EXAKT!)
   ============================================ */
.header {
    background-color: var(--hwk-blue-light-50);
    min-height: 64px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 24px;
    box-shadow: var(--shadow-header);
    position: sticky;
    top: 0;
    z-index: 100;
    gap: 16px;
}

/* Logo-Bereich (hellerer Hintergrund wie im Original) */
.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 18px;
    font-weight: 700;
    color: var(--hwk-blue-dark);
    text-decoration: none;
    border-bottom: none;
    flex-shrink: 0;
}

.logo:hover {
    background-color: transparent;
}

.logo-icon {
    width: 40px;
    height: 40px;
    background-color: var(--hwk-blue-dark);
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
}

.logo-icon i {
    width: 22px;
    height: 22px;
}

.logo-text {
    white-space: nowrap;
}

/* User Menu */
.user-menu,
.header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.user-name {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--hwk-blue-dark);
    font-weight: 500;
    white-space: nowrap;
}

/* Header Buttons */
.btn-logout,
.btn-nav {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 20px;
    background-color: var(--hwk-blue-light);
    color: white;
    border: 1px solid var(--hwk-blue-light);
    border-radius: 0;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
    text-decoration: none;
    white-space: nowrap;
}

.btn-logout:hover,
.btn-nav:hover {
    background-color: var(--hwk-blue-dark);
    border-color: var(--hwk-blue-dark);
    color: white;
}


/* ============================================
   6. HWK BUTTONS (EXAKT!)
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 20px;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.5;
    text-align: center;
    cursor: pointer;
    border: 1px solid transparent;
    border-radius: 0;
    transition: all 0.2s;
    text-decoration: none;
    font-family: inherit;
    white-space: nowrap;
}

/* Primary = HWK Blau Hell */
.btn-primary {
    background-color: var(--hwk-blue-light);
    border-color: var(--hwk-blue-light);
    color: white;
}

.btn-primary:hover,
.btn-primary:focus {
    background-color: var(--hwk-blue-dark);
    border-color: var(--hwk-blue-dark);
    color: white;
}

/* Default/Secondary = Weiß mit Rahmen */
.btn-default,
.btn-secondary {
    background-color: white;
    border-color: var(--hwk-blue-light-25);
    color: var(--hwk-grey-dark);
}

.btn-default:hover,
.btn-secondary:hover {
    border-color: var(--hwk-blue-light);
    color: var(--hwk-blue-light);
    background-color: white;
}

/* Success = HWK Grün */
.btn-success {
    background-color: var(--hwk-green-dark-75);
    border-color: var(--hwk-green-dark-75);
    color: white;
}

.btn-success:hover {
    background-color: var(--hwk-green-dark);
    border-color: var(--hwk-green-dark);
}

/* Warning = HWK Orange */
.btn-warning {
    background-color: var(--hwk-orange);
    border-color: var(--hwk-orange);
    color: white;
}

.btn-warning:hover {
    background-color: var(--hwk-orange-75);
    border-color: var(--hwk-orange-75);
}

/* Danger = HWK Rot */
.btn-danger {
    background-color: var(--hwk-red-dark);
    border-color: var(--hwk-red-dark);
    color: white;
}

.btn-danger:hover {
    background-color: var(--hwk-red-dark-75);
    border-color: var(--hwk-red-dark-75);
}

/* Info = HWK Blau Hell */
.btn-info {
    background-color: var(--hwk-blue-light);
    border-color: var(--hwk-blue-light);
    color: white;
}

/* White Button */
.btn-white {
    background-color: white;
    border-color: white;
    color: var(--hwk-blue-dark);
}

.btn-white:hover {
    color: var(--hwk-blue-light);
    border-color: var(--hwk-blue-light);
}

/* Button Größen */
.btn-sm {
    padding: 6px 12px;
    font-size: 14px;
}

.btn-lg {
    padding: 14px 28px;
    font-size: 18px;
}


/* ============================================
   7. HWK CARDS/BOXES (EXAKT!)
   ============================================ */
.card,
.box,
.listgroup-wrapper,
.teaser-box,
.bg-white-box,
.searchhit {
    background-color: white;
    box-shadow: var(--shadow-default);
    border-radius: 0;
    margin-bottom: 22px;
    overflow: hidden;
}

/* Hover-Effekt für klickbare Boxes */
.card:hover,
.teaser-box:hover,
.listgroup-wrapper:hover,
.assistant-card:hover {
    box-shadow: var(--shadow-hover);
}

.card:active,
.teaser-box:active,
.listgroup-wrapper:active,
.assistant-card:active {
    box-shadow: var(--shadow-active);
}

/* Card Header */
.card-header,
.listgroup-intro {
    border-bottom: 1px solid var(--hwk-blue-light-25);
    padding: 12px 18px;
}

.card-header h3,
.card-header h4,
.listgroup-intro h3,
.listgroup-intro h4 {
    font-size: 20px;
    color: var(--hwk-blue-light);
    margin: 0;
    padding: 0;
}

/* Card Body */
.card-body,
.card-content {
    padding: 18px;
}

/* Card Footer */
.card-footer,
.listgroup-footer {
    border-top: 1px solid var(--hwk-blue-light-25);
    margin-top: auto;
    padding: 8px 18px;
}

.card-footer a,
.listgroup-footer a {
    font-size: 14px;
    display: block;
    color: var(--hwk-grey-dark);
}


/* ============================================
   8. HWK LISTGROUP MIT PFEIL (EXAKT!)
   ============================================ */
.list-group {
    margin-bottom: 0;
}

.list-group-item {
    display: flex;
    padding: 12px 0;
    border: none;
    border-top: 1px solid var(--hwk-blue-light-25);
    background: transparent;
    color: var(--hwk-grey-dark);
    text-decoration: none;
    position: relative;
}

.list-group-item:first-child {
    border-top: none;
}

/* HWK Hover-Effekt für List Items */
.list-group-item:hover,
.list-group-item:focus,
.listgroup-footer a:hover {
    background-color: var(--bg-body);
}

.listgroup-text {
    padding: 0 18px;
    width: 100%;
}

.listgroup-text p {
    font-size: 16px;
    line-height: 1.4;
    padding: 0;
    margin: 0;
}

/* PFEIL VOR DEM LINK-TEXT (HWK Pattern!) */
.listgroup-arrow .list-group-item .listgroup-text {
    padding-left: 40px;
}

.listgroup-arrow .list-group-item .listgroup-text::before {
    content: "▶";
    position: absolute;
    font-size: 12px;
    color: var(--hwk-blue-light);
    top: 14px;
    left: 18px;
}


/* ============================================
   9. HWK TEASER TILES
   ============================================ */
.teaser-tile {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.teaser-image {
    position: relative;
    overflow: hidden;
    min-height: 200px;
    max-height: 260px;
    margin-bottom: 20px;
}

.teaser-image img {
    width: 100%;
    min-height: 200px;
    object-fit: cover;
}

.teaser-icon {
    padding: 18px;
}

.teaser-icon i,
.teaser-icon .glyphicon {
    font-size: 48px;
    color: var(--hwk-blue-light);
}

.teaser-text {
    padding: 0 18px 12px;
    flex: 1;
}

.teaser-text h4 {
    font-size: 20px;
    font-weight: 700;
    color: var(--hwk-black);
    margin-bottom: 8px;
}

.teaser-text p {
    font-size: 16px;
    color: var(--hwk-grey-dark);
    line-height: 1.4;
}

/* Teaser Link (ganzer Bereich klickbar) */
a.teaser-link {
    position: absolute;
    display: block;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    opacity: 0;
    border-bottom: none;
}


/* ============================================
   10. HWK FORMULARE
   ============================================ */
.form-group {
    position: relative;
    margin-bottom: 20px;
}

.form-group label,
.control-label {
    display: block;
    font-size: 16px;
    font-weight: 600;
    color: var(--hwk-blue-dark);
    margin-bottom: 6px;
}

.form-control,
input[type="text"],
input[type="email"],
input[type="password"],
input[type="number"],
input[type="tel"],
input[type="url"],
input[type="search"],
select,
textarea {
    width: 100%;
    padding: 12px 16px;
    font-size: 16px;
    color: var(--hwk-grey-dark);
    background-color: rgba(208, 227, 249, 0.5);
    border: 1px solid transparent;
    border-radius: 0;
    transition: border-color 0.2s;
}

.form-control:focus,
input:focus,
select:focus,
textarea:focus {
    outline: none;
    border-color: var(--hwk-blue-light);
}

/* Form Validation */
.has-error .form-control,
.form-control.is-invalid {
    border-color: var(--hwk-red-dark);
}

.has-success .form-control,
.form-control.is-valid {
    border-color: var(--hwk-green-dark-75);
}

.error-message,
.invalid-feedback {
    color: var(--hwk-red-dark);
    font-size: 14px;
    margin-top: 4px;
}


/* ============================================
   11. HWK ALERTS
   ============================================ */
.alert {
    padding: 12px 18px;
    margin-bottom: 16px;
    border: none;
    border-radius: 0;
    font-size: 16px;
}

.alert-success {
    background-color: var(--hwk-green-light-75);
    color: var(--hwk-green-dark);
}

.alert-warning {
    background-color: var(--hwk-yellow-75);
    color: var(--hwk-grey-dark);
}

.alert-danger,
.alert-error {
    background-color: var(--hwk-red-light-75);
    color: var(--hwk-red-dark);
}

.alert-info {
    background-color: var(--hwk-blue-light-25);
    color: var(--hwk-blue-dark);
}


/* ============================================
   12. HWK MODALS
   ============================================ */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-container {
    background: white;
    box-shadow: var(--shadow-hover);
    border-radius: 0;
    max-width: 700px;
    width: 90%;
    max-height: 90vh;
    overflow: hidden;
}

.modal-header {
    background: linear-gradient(135deg, var(--hwk-blue-dark) 0%, var(--hwk-blue-dark-75) 100%);
    color: white;
    padding: 24px;
    position: relative;
}

.modal-header h2 {
    font-size: 24px;
    color: white;
    margin: 0;
}

.modal-close {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 0;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-close:hover {
    background: rgba(255, 255, 255, 0.2);
}

.modal-body {
    padding: 24px;
    max-height: 50vh;
    overflow-y: auto;
}

.modal-footer {
    padding: 16px 24px;
    border-top: 1px solid var(--hwk-blue-light-25);
    display: flex;
    justify-content: flex-end;
    gap: 12px;
}


/* ============================================
   13. HWK TABLES
   ============================================ */
.table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
}

.table th,
.table td {
    padding: 12px 16px;
    text-align: left;
    border-bottom: 1px solid var(--hwk-blue-light-25);
}

.table th {
    background-color: var(--hwk-blue-light-25);
    color: var(--hwk-blue-dark);
    font-weight: 700;
}

.table tbody tr:hover {
    background-color: var(--bg-body);
}


/* ============================================
   14. HWK BADGES
   ============================================ */
.badge,
.label {
    display: inline-block;
    padding: 4px 10px;
    font-size: 12px;
    font-weight: 600;
    line-height: 1;
    border-radius: 0;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.badge-primary,
.label-primary {
    background-color: var(--hwk-blue-dark);
    color: white;
}

.badge-success,
.label-success {
    background-color: var(--hwk-green-dark);
    color: white;
}

.badge-warning,
.label-warning {
    background-color: var(--hwk-orange);
    color: white;
}

.badge-danger,
.label-danger {
    background-color: var(--hwk-red-dark);
    color: white;
}


/* ============================================
   15. HWK DROPDOWN
   ============================================ */
.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 200px;
    background: white;
    box-shadow: var(--shadow-hover);
    border-radius: 0;
    border: none;
    padding: 0;
    z-index: 50;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.2s ease;
}

.dropdown.open .dropdown-menu,
.dropdown-menu.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-item,
.dropdown-menu > li > a {
    display: block;
    padding: 13px 20px;
    color: var(--hwk-blue-dark);
    border-bottom: 1px solid var(--hwk-blue-light-25);
    text-decoration: none;
}

.dropdown-item:last-child,
.dropdown-menu > li:last-child > a {
    border-bottom: none;
}

.dropdown-item:hover,
.dropdown-menu > li > a:hover,
.dropdown-menu > li.active > a {
    background-color: var(--hwk-blue-light-25);
    color: var(--hwk-blue-dark);
}


/* ============================================
   16. HWK FOOTER
   ============================================ */
.site-footer {
    margin-top: 30px;
    font-size: 14px;
}

.footer-content {
    padding: 20px 0;
    border-top: 1px solid var(--hwk-blue-light-25);
}

.footer-bottom,
#footer-bottom {
    background-color: var(--hwk-blue-dark);
    color: white;
    padding: 35px 0;
    min-height: 200px;
}

.footer-bottom a,
#footer-bottom a {
    color: white;
    border-bottom-color: white;
}

.footer-bottom a:hover,
#footer-bottom a:hover {
    text-decoration: underline;
    background: transparent;
}


/* ============================================
   17. UTILITIES
   ============================================ */
.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.flex { display: flex; }
.flex-col { flex-direction: column; }
.items-center { align-items: center; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }

.hidden { display: none !important; }
.d-block { display: block !important; }
.d-flex { display: flex !important; }

/* HWK Farb-Klassen */
.color-hwk-blue-dark { color: var(--hwk-blue-dark) !important; }
.color-hwk-blue-light { color: var(--hwk-blue-light) !important; }
.color-hwk-green-dark { color: var(--hwk-green-dark) !important; }
.color-hwk-orange { color: var(--hwk-orange) !important; }
.color-hwk-red-dark { color: var(--hwk-red-dark) !important; }
.white { color: white !important; }

.bg-color { background-color: var(--bg-body) !important; }
.bg-white { background-color: white !important; }

/* HWK Spacing (EXAKT aus Original) */
.margin-top-xs { margin-top: 15px !important; }
.margin-top-s { margin-top: 25px !important; }
.margin-top-m { margin-top: 40px !important; }
.margin-top-l { margin-top: 60px !important; }

.margin-bottom-xs { margin-bottom: 15px !important; }
.margin-bottom-s { margin-bottom: 25px !important; }
.margin-bottom-m { margin-bottom: 40px !important; }
.margin-bottom-l { margin-bottom: 60px !important; }

.padding-top-xs { padding-top: 15px !important; }
.padding-top-s { padding-top: 25px !important; }
.padding-top-m { padding-top: 40px !important; }
.padding-top-l { padding-top: 60px !important; }

.padding-bottom-xs { padding-bottom: 15px !important; }
.padding-bottom-s { padding-bottom: 25px !important; }
.padding-bottom-m { padding-bottom: 40px !important; }
.padding-bottom-l { padding-bottom: 60px !important; }


/* ============================================
   18. CONTAINER
   ============================================ */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.container-sm { max-width: 600px; }
.container-md { max-width: 900px; }
.container-lg { max-width: 1200px; }
.container-xl { max-width: 1600px; }


/* ============================================
   19. HAMBURGER MENU
   ============================================ */
.hamburger {
    display: none;
    width: 44px;
    height: 44px;
    background: white;
    border: 1px solid var(--hwk-blue-light-25);
    border-radius: 0;
    cursor: pointer;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    flex-shrink: 0;
}

.hamburger span {
    width: 20px;
    height: 2px;
    background: var(--hwk-blue-dark);
    transition: all 0.3s;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}
.hamburger.active span:nth-child(2) {
    opacity: 0;
}
.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}


/* ============================================
   20. MOBILE MENU
   ============================================ */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu {
    position: fixed;
    top: 0;
    right: -300px;
    width: 300px;
    max-width: 85vw;
    height: 100%;
    background: white;
    border-left: 1px solid var(--hwk-blue-light-25);
    z-index: 999;
    transition: right 0.3s ease;
    display: flex;
    flex-direction: column;
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu-header {
    padding: 20px;
    border-bottom: 1px solid var(--hwk-blue-light-25);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.mobile-menu-content {
    flex: 1;
    padding: 20px;
    overflow-y: auto;
}

.mobile-menu-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    background: var(--bg-body);
    border: 1px solid var(--hwk-blue-light-25);
    border-radius: 0;
    color: var(--hwk-grey-dark);
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 8px;
    cursor: pointer;
}

.mobile-menu-item:hover {
    background: var(--hwk-blue-light-25);
}


/* ============================================
   21. RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
    .container {
        padding: 0 16px;
    }
}

@media (max-width: 768px) {
    .header {
        padding: 10px 16px;
    }
    
    .hamburger {
        display: flex;
    }
    
    .user-menu {
        display: none;
    }
    
    h1, .h1 { font-size: 28px; margin-bottom: 15px; }
    h2, .h2 { font-size: 24px; margin-bottom: 10px; }
    h3, .h3 { font-size: 22px; }
    
    p { font-size: 18px; }
    
    .teaser-image {
        min-height: 150px;
        max-height: 200px;
    }
    
    .modal-container {
        max-height: 95vh;
        margin: 10px;
    }
    
    .modal-footer {
        flex-direction: column;
    }
    
    .modal-footer .btn {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .header {
        padding: 8px 12px;
    }
    
    .logo {
        gap: 8px;
        font-size: 14px;
    }
    
    .logo-icon {
        width: 32px;
        height: 32px;
    }
    
    .btn {
        padding: 8px 16px;
        font-size: 14px;
    }
}


/* ============================================
   22. ANIMATIONS
   ============================================ */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

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

.fade-in {
    animation: fadeIn 0.3s ease;
}

.fade-in-up {
    animation: fadeInUp 0.3s ease;
}


/* ============================================
   23. PRINT
   ============================================ */
@media print {
    .header,
    .hamburger,
    .mobile-menu,
    .mobile-menu-overlay,
    .btn-logout {
        display: none !important;
    }
    
    body {
        background: white;
        color: black;
    }
    
    .card,
    .box {
        box-shadow: none;
        border: 1px solid #ccc;
    }
}
