/* cmsms stylesheet: kontaktco_nav_css modified: Montag, 26. Januar 2026 09:27:55 */
/**********************************************************
 * 1. VARIABLEN & BASIS & FONTS
 **********************************************************/
/* 1. Roboto Regular (400) */
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('/uploads/assets/editorial/assets/fonts/roboto-v50-latin-regular.woff2') format('woff2');
}

/* 1.1 Roboto Italic (400) - falls du kursiven Text nutzt */
@font-face {
  font-family: 'Roboto';
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url('/uploads/assets/editorial/assets/fonts/roboto-v50-latin-italic.woff2') format('woff2');
}

/* 2. Roboto Medium (500) */
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('/uploads/assets/editorial/assets/fonts/roboto-v50-latin-500.woff2') format('woff2');
}

/* 3. Roboto Bold (700) */
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('/uploads/assets/editorial/assets/fonts/roboto-v50-latin-700.woff2') format('woff2');
}

:root {
  --koco-red: rgb(255, 0, 0);
  --koco-grey: rgb(131, 131, 131);
  --koco-blue-dark: rgb(0, 45, 85);
  --koco-blue-light: rgb(153, 214, 234);
  --koco-dark: rgb(40, 40, 40);

  --font-main: 'Roboto', sans-serif;
  --font-weight-regular: 400;
  --font-weight-medium: 500;
  --font-weight-bold: 700;
  
  --sidebar-width: 300px; 
}

body {
  font-family: var(--font-main);
  color: var(--koco-blue-dark);
  background: #f5f5f5;
  line-height: 1.6;
  overflow-x: hidden;
}

/**********************************************************
 * 2. LAYOUT: WRAPPER & MAIN
 **********************************************************/

#main {
  padding-top: 0;
  transition: margin-right 0.3s ease;
}

#main .inner {
  max-width: 1100px;
  margin: 0.5rem auto 0;
  background: #ffffff;
  padding: 1.5rem 2.2rem 3rem;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}

/* Desktop */
@media (min-width: 1025px) {
  #wrapper {
    display: flex;
    flex-direction: row;
    padding-right: var(--sidebar-width); 
  }

  #main {
    width: 100%;
    margin: 0 !important;
    flex: 1;
  }
}

/* Mobile & Tablet */
@media (max-width: 1024px) {
  #main .inner {
    padding: 1.5rem 1.5rem 2rem; 
  }
  #wrapper {
    padding-right: 0;
  }
}

/**********************************************************
 * 3. HEADER / LOGO
 **********************************************************/

#header {
  position: relative;
  padding: 0.5rem 0 0.4rem 0 !important;
  border-bottom: 4px solid var(--koco-red) !important;
  background: #ffffff;
}

.koco-header {
  padding: 0.4rem 0 0.2rem;
  margin-bottom: 1rem;
  background: #ffffff;
}

.koco-header-inner {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.25rem;
  margin: 0;
}

.koco-logo {
  height: 60px;
  width: auto;
  display: block;
}

@media (max-width: 600px) {
  .koco-logo {
    height: 40px;
  }
}

.koco-tagline {
  font-family: var(--font-main) !important;
  font-size: 0.72rem;
  font-weight: 500;
  line-height: 1.35;
  color: var(--koco-blue-dark);
  text-transform: uppercase;
  letter-spacing: 0.11em;
  margin: 0;
  text-align: right;
  width: 100%;
  max-width: 640px;
  align-self: flex-end;
}

@media (min-width: 900px) {
  .koco-header-inner {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
  .koco-tagline {
    margin-top: 0.1rem;
  }
}

@media (max-width: 600px) {
  .koco-header-inner {
    align-items: flex-start;
  }
  .koco-tagline {
    font-size: 0.68rem;
    letter-spacing: 0.09em;
    text-align: left;
    max-width: 90%;
    align-self: flex-start;
  }
}

.koco-header a, .koco-header a:hover {
  border: none !important;
  text-decoration: none !important;
}

/**********************************************************
 * 4. SIDEBAR (Fixiert)
 **********************************************************/

#sidebar {
  position: fixed !important;
  top: 8px !important;
  bottom: 0 !important;
  right: 0 !important;
  left: auto !important;
  border-radius: 12px;
  
  width: var(--sidebar-width) !important;
  height: 100vh !important;
  
  background: #f5f6f7;
  z-index: 10000;
  border-left: 1px solid rgba(0,0,0,0.05);
  box-shadow: -5px 0 15px rgba(0,0,0,0.05);
  overflow-y: auto !important;
  
  transform: none !important;
  margin-left: 0 !important;
  transition: right 0.35s ease-in-out, box-shadow 0.35s ease-in-out;
}

#sidebar > .inner {
  width: 100% !important;
  position: relative !important;
  top: auto !important;
  padding: 2.5rem 2rem 2rem !important;
  margin: 0 !important;
}

/* Mobile Logik */
@media (max-width: 1024px) {
  #sidebar.inactive {
    right: -300px !important; 
    box-shadow: none;
  }
  
  #sidebar > .inner {
    padding-top: 5rem !important;
  }
}

/**********************************************************
 * 5. BURGER BUTTON
 **********************************************************/

/* Desktop: Aus */
@media (min-width: 1025px) {
  #sidebar .toggle { display: none !important; }
}

/* Mobile: An */
@media (max-width: 1024px) {
  #sidebar .toggle {
    display: block !important;
    position: fixed !important;
    top: 10px;
    right: 10px;
    left: auto !important;
    width: 3.2rem;
    height: 3.2rem;
    background: #ffffff;
    border-radius: 6px;
    box-shadow: 0 2px 8px rgba(0,45,85,0.15);
    border: 1px solid rgba(0,0,0,0.05);
    z-index: 10001;
    text-indent: -9999px; 
    overflow: hidden;
    cursor: pointer;
  }

  /* Die Linien */
  #sidebar .toggle::before {
    content: "";
    display: block;
    position: absolute;
    width: 1.6rem;
    height: 3px;
    background: var(--koco-blue-dark);
    border-radius: 2px;
    top: 1.1rem;       
    left: 0.8rem;
    box-shadow: 
      0 7px 0 0 var(--koco-blue-dark),
      0 14px 0 0 var(--koco-blue-dark);
    font-family: inherit !important;
    font-size: 0 !important;
  }
}

/**********************************************************
 * 6. MENÜ STYLING (FIX: Feste Pixel-Werte)
 **********************************************************/

/* Allgemein */
#menu, #menu * { 
  font-family: var(--font-main) !important; 
}
#menu header.major { 
  display: none !important; 
}

/* Level 1 (Hauptmenü: "SCHULE") */
#menu > ul > li {
  position: relative !important; /* Wichtig für Pfeil */
  margin-top: 0 !important;
  padding-top: 0.6rem !important;
  padding-bottom: 0.6rem !important;
  border-top: 1px solid rgba(0,0,0,0.05) !important;
}

#menu > ul > li > a,
#menu > ul > li > span.section-text {
  /* FIX: 16px statt rem, damit es überall gleich aussieht */
  font-size: 16px !important; 
  font-weight: 700 !important;
  line-height: 1.5 !important;
  display: block;
  padding-right: 3.5rem !important; /* Platz für Pfeil */
  color: var(--koco-blue-dark);
}

/* Level 2 (Untermenü: "Volksschule") */
#menu > ul > li > ul {
  margin-top: 0.2rem !important;
  margin-bottom: 0.5rem !important;
  padding-left: 0 !important;
  display: none; /* Standard: zu */
}

/* Sichtbar wenn aktiv */
#menu ul li.active > ul {
  display: block !important;
}

/* Styling der Untermenü-Links */
#menu > ul > li > ul li a,
#menu > ul > li > ul li span {
  /* FIX: 15px fest -> schön groß und konsistent */
  font-size: 15px !important; 
  line-height: 1.4 !important;
  padding: 0.4rem 0 0.4rem 1rem !important; /* Leicht eingerückt */
  font-weight: 500 !important;
  color: var(--koco-grey);
}

#menu > ul > li > ul li a:hover {
  color: var(--koco-red) !important;
}

/* --- Der separate Pfeil (Button) --- */
.menu-arrow {
  position: absolute;
  top: 0;
  right: 0;
  width: 3.5rem;   /* Klickbereich */
  height: 100%;
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
}

.menu-arrow::before {
  content: '\f078'; /* FontAwesome Chevron */
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  color: var(--koco-grey);
  transition: transform 0.25s ease, color 0.2s ease;
  font-size: 0.9rem;
}

.menu-arrow:hover::before {
  color: var(--koco-red);
}

/* Pfeil drehen wenn aktiv */
#menu ul li.active > .menu-arrow::before {
  transform: rotate(180deg);
  color: var(--koco-red);
}

/**********************************************************
 * 7. SONSTIGES (Hero, Footer, Kacheln)
 **********************************************************/

/* Hero */
.hero {
  width: 100%;
  height: 320px;
  border-radius: 14px;
  overflow: hidden;
  margin: 1rem 0 2rem;
  position: relative;
  box-shadow: 0 8px 22px rgba(0,0,0,0.06);
}
.hero-img {
  width: 100%; height: 100%; object-fit: cover; object-position: center;
  filter: brightness(92%) contrast(102%); opacity: 0.96;
}
@media (max-width: 900px) { .hero { height: 200px; } }

/* Typo */
h1, h2, h3, h4 {
  font-family: var(--font-main);
  font-weight: var(--font-weight-bold);
  color: var(--koco-blue-dark);
}
#content h1 { font-size: 2rem; margin-bottom: 0.6rem; margin-top: 0; }
#content h2 { font-size: 1.6rem; margin-bottom: 0.6rem; }
#content h3 { font-size: 1.3rem; margin-bottom: 0.6rem; }
#content p { color: var(--koco-grey); margin-bottom: 0.9rem; }
a { color: var(--koco-red); text-decoration: none; }
a:hover { text-decoration: underline; }

/* Kacheln */
.koco-section { margin: 2.5rem 0 3rem; }
.koco-section-title {
  text-align: center; font-size: 1.3rem; text-transform: uppercase;
  letter-spacing: 0.09em; color: var(--koco-blue-dark); margin-bottom: 1.5rem;
}
.kachel-container {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.4rem; margin: 2rem 0 3rem;
}

.kachel-container > div {
  background: #ffffff; border-radius: 10px; overflow: hidden;
  border: 1px solid rgba(0, 45, 85, 0.08); box-shadow: 0 6px 16px rgba(0,0,0,0.05);
  cursor: pointer; 
  /* transition: transform 0.12s ease-out; */ /* BEWEGUNG DEAKTIVIERT */
  transition: border-color 0.12s ease-out;    /* Nur Randfarbe animieren */
}

.kachel-container > div:hover { 
  /* transform: translateY(-2px); */ /* BEWEGUNG DEAKTIVIERT */
  border-color: var(--koco-blue-light); 
}

.kachel-container img { width: 100%; height: auto; display: block; }
.kachel-container .link {
  display: block; font-weight: 600; font-size: 1.05rem; color: var(--koco-dark);
  text-decoration: none; padding: 0.75rem 1rem 0.25rem;
}
.kachel-container p {
  font-size: 0.95rem; color: var(--koco-grey); margin: 0 0 0.5rem; padding: 0 1rem 1rem;
}

/* Sidebar Elemente */
#sidebar section h2 {
  font-size: 1.05rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.08em; color: var(--koco-blue-dark); margin-bottom: 0.6rem;
}
#sidebar p, #sidebar a { font-size: 0.92rem; color: var(--koco-grey); }
#sidebar ul { list-style: none; padding: 0; margin: 0.4rem 0 1.4rem; }
#sidebar a:hover { color: var(--koco-red); }
.koco-divider { height: 1px; background: rgba(0,0,0,0.06); margin: 1.6rem 0; }

/**********************************************************
 * 8. FOOTER (Einspaltig & Zentriert)
 **********************************************************/

#koco-footer-main {
  margin-top: 4rem; 
  padding: 3rem 1.5rem 2rem; 
  background: #f4f4f4;
  border-top: 1px solid rgba(0,0,0,0.06); 
  width: 100%;
  text-align: center; /* Alles zentrieren */
}

/* Desktop: Platz rechts lassen für Sidebar */
@media (min-width: 1025px) {
    #koco-footer-main { padding-right: calc(1.5rem + var(--sidebar-width)); }
}

.koco-footer {
  max-width: 800px; /* Schmaler, damit es kompakt wirkt */
  margin: 0 auto;
  font-size: 0.9rem;
  color: var(--koco-grey);
}

.koco-footer h3 {
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--koco-blue-dark);
  margin-bottom: 1rem;
  margin-top: 0;
}

.koco-footer p {
  line-height: 1.6;
  margin-bottom: 1rem;
}

.koco-footer a {
  color: var(--koco-blue-dark);
  text-decoration: none;
  font-weight: 500;
}
.koco-footer a:hover {
  color: var(--koco-red);
  text-decoration: underline;
}

/* Trennlinie */
.koco-footer__divider {
    height: 1px;
    width: 60px;
    background: rgba(0,0,0,0.1);
    margin: 1.5rem auto;
}

/* Links in einer Zeile */
.koco-footer__links {
    font-size: 0.95rem;
}

/* Förder-Logo */
.koco-footer__funding {
    margin-top: 2rem;
}
.koco-footer__funding p {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.5rem;
}
.koco-footer__funding a {
    border-bottom-style: none;
}
.footer-logo {
    height: 50px; /* Größe anpassen je nach Logo-Format */
    width: auto;
    opacity: 0.8;
    transition: opacity 0.2s;
}
.footer-logo:hover {
    opacity: 1;
}

/* Copyright Leiste unten */
.koco-footer__bottom {
  border-top: 1px solid rgba(0,0,0,0.08);
  margin-top: 2rem;
  padding-top: 1rem;
  font-size: 0.8rem;
  color: #999;
}

/**********************************************************
 * 9. KONTAKT-BOXEN & BUTTONS
 **********************************************************/

.koco-contact-box {
  background: #fafafa;
  border-left: 5px solid var(--koco-red);
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  margin-top: 3rem;
  padding: 1.8rem;
  border-radius: 0 8px 8px 0;
  box-shadow: 0 5px 15px rgba(0,0,0,0.03);
}

.koco-contact-img img {
  width: 110px;
  height: auto;
  border-radius: 4px;
  border: 1px solid rgba(0,0,0,0.1);
  display: block;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.koco-contact-info h3 {
  margin: 0 0 0.5rem 0;
  font-size: 1.15rem;
  color: var(--koco-blue-dark);
}

.koco-contact-info p {
  margin-bottom: 1rem;
  font-size: 0.95rem;
  color: var(--koco-grey);
}

.koco-contact-actions {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.koco-contact-actions .phone-link {
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--koco-red);
  text-decoration: none;
  font-family: var(--font-main);
}
.koco-contact-actions .phone-link:hover {
  text-decoration: underline;
}

/* Mobile Optimierung Kontaktbox */
@media (max-width: 600px) {
  .koco-contact-box {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1.5rem;
  }
  .koco-contact-actions {
    justify-content: center;
    gap: 1rem;
  }
}

/* GLOBALER BUTTON FIX 
   Macht alle Buttons einheitlich (Schrift, Layout, Zentrierung)
*/
input[type="submit"],
input[type="reset"],
input[type="button"],
button,
.button {
  font-family: var(--font-main) !important;
  font-weight: 700 !important;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: 4px !important;
  transition: all 0.2s ease;
  
  /* Flexbox für perfekte Zentrierung */
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  text-align: center;
  text-decoration: none !important;
  
  /* Abstände */
  line-height: 1.2 !important;
  height: auto !important;
  padding: 0.75rem 1.5rem;
  min-width: 0;
}

input[type="submit"]:hover,
button:hover,
.button:hover {
  text-decoration: none !important;
}

/* Primary Button (Rot) */
.button.primary {
  background-color: var(--koco-red) !important;
  color: #ffffff !important;
  border: 1px solid var(--koco-red) !important;
  box-shadow: none !important;
}
.button.primary:hover {
  background-color: #cc0000 !important;
  border-color: #cc0000 !important;
}

/* Small Button (kleiner) */
.button.small {
  font-size: 0.75rem !important;
  padding: 0.5rem 1rem !important;
  min-width: 140px; /* Optional: Mindestbreite für Konsistenz */
}

/* Fit Button (Volle Breite) */
.button.fit {
  width: 100% !important;
  display: flex !important;
  margin: 0 !important;
}

/* Team List View (Aktualisiert: Kleine Bilder, Schriftart-Fix) */
.team-list-item {
    background: #fff;
    margin-bottom: 2.5rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #eee;
    font-family: var(--font-main) !important; /* Schriftart erzwingen */
}
.team-list-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

/* Bild-Container für feste Breite */
.team-list-img-wrapper {
    width: 110px; /* Exakt wie bei contact_box */
    flex-shrink: 0; /* Nicht schrumpfen */
    margin-right: 1.5rem; /* Abstand zum Text */
}

.team-list-img {
    width: 100%;
    height: auto;
    border-radius: 4px; 
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    border: 1px solid rgba(0,0,0,0.05);
    display: block;
}

/* Flexbox Layout für Bild + Text nebeneinander */
.team-list-row {
    display: flex;
    align-items: flex-start;
}

@media (max-width: 600px) {
    .team-list-row {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }
    .team-list-img-wrapper {
        margin-right: 0;
        margin-bottom: 1rem;
    }
}

.team-list-content h4 {
    color: var(--koco-blue-dark);
    margin-top: 0;
    margin-bottom: 0.3rem;
    font-size: 1.3rem;
    font-family: var(--font-main) !important;
    font-weight: 700;
}

.team-list-content .role-row {
    margin-bottom: 1.2rem;
    font-size: 0.95rem;
    color: var(--koco-grey);
    font-family: var(--font-main) !important;
}

.team-list-content .role {
    color: var(--koco-red);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-right: 0.5rem;
}

.team-list-content a {
    color: var(--koco-blue-dark);
    text-decoration: underline;
}

.team-list-content h5 {
    font-size: 0.85rem;
    text-transform: uppercase;
    color: var(--koco-dark);
    font-weight: 700;
    margin: 1rem 0 0.3rem 0;
    border-bottom: 2px solid #f4f4f4;
    display: inline-block;
    padding-bottom: 2px;
    font-family: var(--font-main) !important;
}

.team-list-content ul {
    margin: 0;
    padding-left: 1.2rem;
    font-size: 0.95rem;
    font-family: var(--font-main) !important;
    color: var(--koco-dark);
}

.team-list-content li {
    margin-bottom: 0.2rem;
}
/* Modernes Accordion (HTML5 Details/Summary) */
details.koco-details {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 8px;
    margin-bottom: 1rem;
    overflow: hidden;
    transition: all 0.3s ease;
    font-family: var(--font-main) !important;
}

details.koco-details:hover {
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

summary.koco-summary {
    background: #f8f9fa;
    padding: 1.2rem 1.5rem;
    cursor: pointer;
    list-style: none; /* Standard-Dreieck ausblenden */
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: var(--font-main) !important;
    font-weight: 700;
    color: var(--koco-blue-dark);
    font-size: 1.2rem;
    transition: background 0.2s;
}

/* Standard-Marker in Webkit-Browsern ausblenden */
summary.koco-summary::-webkit-details-marker {
    display: none;
}

summary.koco-summary:hover {
    background: #eef4f8;
}

/* Pfeil via FontAwesome */
summary.koco-summary::after {
    content: '\f078'; /* fa-chevron-down */
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: var(--koco-red);
    transition: transform 0.3s ease;
}

/* Zustand: Geöffnet */
details.koco-details[open] summary.koco-summary {
    border-bottom: 1px solid #eee;
    background: #eef4f8;
}

details.koco-details[open] summary.koco-summary::after {
    transform: rotate(180deg); /* Pfeil drehen */
}

.koco-details-content {
    padding: 1.5rem;
    background: #fff;
    color: var(--koco-dark);
    font-family: var(--font-main) !important;
    animation: fadeIn 0.3s ease-in-out;
}

.koco-details-content h4 {
    color: var(--koco-red);
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
    font-size: 1rem;
    text-transform: uppercase;
    font-family: var(--font-main) !important;
    border-bottom: 1px solid #f0f0f0;
    padding-bottom: 5px;
}

.koco-details-content h4:first-child {
    margin-top: 0;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-5px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ============================================================
   FIX: BURGER MENÜ (Grauen Kasten entfernen)
   ============================================================ */
@media screen and (max-width: 736px) {
    #sidebar .toggle:after {
        display: none !important;
    }
}

/* 1. Basis-Link Einstellung */
#menu > ul > li > a,
#menu > ul > li > span.section-text {
    position: relative !important; /* WICHTIG damit der Pfeil sich daran orientiert */
    display: block;
    padding: 12px 40px 12px 0 !important;
    cursor: pointer;
    text-decoration: none;
    color: var(--koco-blue-dark);
}

/* 2. Der Pfeil Trigger */
a.has-submenu-trigger::after {
    content: '\f078'; /* Chevron Down */
    font-family: "Font Awesome 5 Free"; /* Prüfe ob das in main.css so heißt */
    font-weight: 900;
    
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    width: 40px; /* Breite der Klickfläche */
    
    /* Flexbox zum Zentrieren des Icons */
    display: flex;
    align-items: center;
    justify-content: center;
    
    color: var(--koco-grey);
    transition: all 0.3s ease;
    pointer-events: none; /* Klick geht durch auf den Link */
}

/* 3. Wenn offen */
#menu li.active > a.has-submenu-trigger::after {
    transform: rotate(180deg);
    color: var(--koco-red);
    padding-right: 10px; /* Rückt optisch nach innen */
}

/* Sidebar: nächste Veranstaltung */
.sidebar-box.sidebar-event {
  margin: 24px 0;
  padding: 18px 16px;
  border-top: 1px solid rgba(0,0,0,.08);
  border-bottom: 1px solid rgba(0,0,0,.08);
}

.sidebar-box.sidebar-event h3 {
  font-size: 13px;
  line-height: 1.25;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .08em;
  opacity: .75;
  margin-bottom: 6px;
color: #0b2b4a;
}


.sidebar-box.sidebar-event .event-title {
  margin: 0 0 6px 0;
  font-size: 15px;
  line-height: 1.35;
  font-weight: 600;
}

.sidebar-box.sidebar-event .event-title a {
  text-decoration: none;
  border-bottom: 1px dotted rgba(11,43,74,.35);
}

.sidebar-box.sidebar-event .event-title a:hover {
  border-bottom-style: solid;
}

.sidebar-box.sidebar-event .event-date {
  font-size: 13px;
  line-height: 1.35;
  opacity: .8;
  margin: 0 0 10px 0;
}

.sidebar-box.sidebar-event .event-more a {
  font-size: 13px;
  text-decoration: none;
  border-bottom: 1px solid rgba(11,43,74,.18);
}

.sidebar-box.sidebar-event .event-more a:hover {
  border-bottom-color: rgba(11,43,74,.45);
}
