/* CSS ANALYZER – bereinigter Output */
/* 9.3.2026 – FIX: Hero Text Overlay global ergänzt */

/* ============================================================ */
/* SHARED.CSS – gemeinsame Definitionen (für alle Seiten)       */
/* ============================================================ */

/* ============================================================ */
/* HERO TEXT OVERLAY – global für alle statischen Hero Sections */
/* ============================================================ */

.hero-text-overlay {
  position: relative;
  z-index: 4; /* muss über hero-section::after (z-index: 3) liegen */
  padding-bottom: 60px;
  width: 100%;
}

.hero-text-content {
  opacity: 0;
  animation: fadeInUp 2.5s ease-out forwards;
}

.hero-text-content h1 {
  font-size: 4em;
  color: #fffff3;
  margin: 0 0 20px 0;
  font-family: "Livvic", sans-serif;
}

.hero-text-content p {
  font-size: 2em;
  color: #fffff3;
  font-family: "Livvic", sans-serif;
}

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

@media (max-width: 900px) {
  .hero-text-content h1 {
    font-size: 3em !important;
  }
}

/* ============================================================ */
/* BASE & TYPOGRAPHY                                             */
/* ============================================================ */

:root {
  --brand-red: #b9242a;
  --brand-light: #fffff3;
  --bg-beige: #f0f0e4;
  --bg-gray: #f4f4f4;
  --text-dark: #333333;
  --text-muted: #777777;
  --header-height: 150px;
  --transition: all 0.3s ease;
  --fau-red: #e30613;
  --page-bg: #fffff3;
  --fau-footer-bg: #2d2e2c;
  --fau-bottom-bg: #1e1f1d;
  --fau-text: #ffffff;
  --fau-text-muted: #b0b0b0;
  --gap: 30px;
  --primary-color: #333;
  --accent-color: #b9242a;
  --gallery-gap: 20px;
  --card-bg: #f2f2e4;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scrollbar-gutter: stable;
  -webkit-text-size-adjust: 100%;
  overflow-y: scroll;
}

body {
  font-family: "Livvic", sans-serif;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  margin: 0;
  padding: 0;
  background-color: #fffff3; /*var(--bg-gray);*/
  color: #000000;
  overflow-x: hidden;
}

strong {
  font-weight: 600;
}

/* ============================================================ */
/* LAYOUT                                                        */
/* ============================================================ */

.main-content {
  max-width: 1200px;
  margin: 40px auto;
  padding: 60px 40px;
  background-color: #fffff3;
  border-radius: 8px;
  font-family: Livvic, sans-serif;
  font-size: 100%;
}

@media (max-width: 768px) {
  .main-content {
    padding: 40px 20px;
  }
}

@media (max-width: 900px) {
  .main-content {
    padding: 40px 15px;
  }
}

.link-section {
  max-width: 1100px;
  margin: 0px auto 60px auto;
  padding: 0 40px 20px 40px;
  background-color: #fffff3;
}

@media (max-width: 768px) {
  .link-section {
    padding: 40px 20px;
  }
}

.group-intro {
  max-width: 900px;
  margin: 0 auto 80px auto;
  padding: 0 20px;
}

.intro-box {
  border-left: 5px solid #b9242a;
  padding: 10px 0 10px 30px;
}

.intro-box p {
  font-size: 1.3em;
  line-height: 1.7;
  color: #333;
  text-align: left;
}

.lead-text {
  font-weight: 700;
  font-size: 1.4rem !important;
  color: #b9242a !important;
  text-align: left;
}

.abstand {
  margin-bottom: 20px;
}

.av {
  color: gray;
  font-style: italic;
}

.nv {
  color: green;
}

/* ============================================================ */
/* HEADINGS                                                      */
/* ============================================================ */

.content-section h2 {
  color: #b9242a;
  font-size: 2.6rem;
  font-weight: 700;
  margin-bottom: 40px;
  text-align: center;
  width: 100%;
  display: block;
}

.group-title {
  color: #b9242a;
  font-size: 2.5em;
  margin: 0;
  font-family: "Livvic", sans-serif;
  font-weight: 700;
  text-align: center;
}

h2.group-title {
  color: #b9242a;
}

.group-subtitle {
  color: #666;
  margin-top: 10px;
  font-size: 1.3em;
  text-align: center;
}

.group-header {
  border-left: 6px solid var(--brand-red);
  padding-left: 25px;
}

.group-intro h2 {
  text-align: center !important;
  width: 100% !important;
  display: block !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
  padding: 0 10px;
  box-sizing: border-box;
  font-size: 2em;
}

@media (max-width: 768px) {
  .group-title {
    font-size: 1.7em !important;
  }
}

@media (max-width: 768px) {
  .group-subtitle {
    font-size: 1.3em;
  }
}

@media (max-width: 900px) {
  .content-section h2,
  .group-intro h2 {
    font-size: 1.8rem !important;
    line-height: 1.2;
    word-wrap: break-word;
    text-align: center !important;
    margin-bottom: 30px;
  }
}

/* ============================================================ */
/* LINKS                                                         */
/* ============================================================ */

.main-content a,
.main-content a:visited,
.team-card a,
.intro-box a {
  color: #b9242a;
  text-decoration: underline;
  transition: color 0.3s ease;
  font-weight: 600;
}

.main-content a:hover,
.main-content a:active,
.team-card a:hover,
.intro-box a:hover {
  color: #000000;
  text-decoration: none;
}

.main-content a {
  font-size: inherit;
}

/* ============================================================ */
/* IMAGES                                                        */
/* ============================================================ */

.img-float-left {
  float: left;
  width: 280px;
  max-width: 300px;
  margin-right: 30px;
  margin-bottom: 15px;
  border-radius: 4px;
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
  .img-float-left {
    float: none;
    display: block;
    width: 100%;
    max-width: none;
    margin-right: 0;
  }
}

@media (max-width: 900px) {
  .img-float-left {
    float: none;
    width: 100%;
    max-width: 350px;
    margin: 0 auto 20px auto;
    display: block;
  }
}

.article-content img {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: 4px;
}

.img-center {
  display: block;
  margin: 20px auto;
}

.img-left {
  float: left;
  margin: 0 20px 10px 0;
  max-width: 40%;
}

.img-right {
  float: right;
  margin: 0 0 10px 20px;
  max-width: 40%;
}

.clearfix::after,
.article-content::after {
  content: "";
  clear: both;
  display: table;
}

.img-grid {
  display: grid;
  gap: 10px;
  margin: 15px 0;
}

.grid-2 {
  grid-template-columns: repeat(2, 1fr);
}
.grid-3 {
  grid-template-columns: repeat(3, 1fr);
}
.grid-4 {
  grid-template-columns: repeat(4, 1fr);
}

.grid-5 {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.grid-5 img:nth-child(1),
.grid-5 img:nth-child(2) {
  width: calc(50% - 5px);
}

.grid-5 img:nth-child(3),
.grid-5 img:nth-child(4),
.grid-5 img:nth-child(5) {
  width: calc(33.33% - 7px);
}

@media (max-width: 600px) {
  .img-grid,
  .grid-5 {
    grid-template-columns: 1fr !important;
  }
  .grid-5 img {
    width: 100% !important;
  }
  .img-left,
  .img-right {
    float: none;
    max-width: 100%;
    margin: 10px 0;
  }
}

/* ============================================================ */
/* ARTICLE CONTENT                                               */
/* ============================================================ */

.article-content p {
  font-size: 1.3em;
  line-height: 1.7;
  margin-bottom: 15px;
  color: #333;
}

.news-article {
  background-color: #f2f2e4;
  border: 1px solid #d1d1c2;
  border-radius: 8px;
  padding: 40px;
  position: relative;
  margin-bottom: 40px;
}

@media (max-width: 768px) {
  .news-article {
    padding: 25px;
  }
}

.article-list {
  list-style: none;
  padding-left: 0;
  margin-left: 20px;
}

.article-list li {
  font-size: 1.3em;
  line-height: 1.5;
  margin-bottom: 12px;
  color: #333;
  padding-left: 30px;
  position: relative;
}

.article-list li::before {
  content: "›";
  color: #b9242a;
  font-weight: bold;
  position: absolute;
  left: 0;
  top: 0;
  font-size: 1.2em;
  line-height: 1.5;
}

/* ============================================================ */
/* LINK CARDS                                                    */
/* ============================================================ */

.link-group {
  margin-bottom: 90px;
}

.link-list {
  display: flex;
  flex-direction: column;
  gap: 25px;
  margin-top: 45px;
}

.link-card {
  background-color: #f2f2e4;
  padding: 30px 35px;
  border-radius: 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 6px solid var(--brand-red);
  border-left: 1px solid #d1d1c0;
  border-right: 1px solid #d1d1c0;
  border-top: 1px solid #d1d1c0;
}

.link-info h3 {
  margin: 0 0 8px 0;
  font-size: 1.6em;
  color: #333;
}

.link-info p {
  margin: 0;
  color: #555;
  font-size: 1.3em;
  line-height: 1.5;
}

.link-btn {
  text-decoration: none;
  background-color: var(--brand-red);
  color: #ffffff !important;
  padding: 10px 0;
  border-radius: 4px;
  font-weight: 700;
  font-size: 1.1em;
  white-space: nowrap;
  margin-left: 35px;
  transition: background-color 0.2s;
  display: inline-block;
  width: 140px;
  text-align: center;
  box-sizing: border-box;
}

.link-btn:hover {
  background-color: #961d22;
}

.link-btns-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-left: auto;
  align-items: flex-end;
}

@media (max-width: 900px) {
  .link-btn {
    width: 100%;
    max-width: 250px;
  }
  .link-card {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .link-btns-group {
    margin-left: 0;
    margin-top: 15px;
    align-items: center;
    width: 100%;
  }
}

@media (max-width: 768px) {
  .link-list {
    margin-top: 30px;
    gap: 20px;
  }
  .link-card {
    flex-direction: column;
    text-align: center;
    padding: 25px 20px;
    gap: 20px;
  }
  .link-info h3 {
    font-size: 1.3em;
  }
  .link-info p {
    font-size: 1.1em;
  }
  .link-btn {
    margin-left: 0;
    margin-top: 15px;
    width: 100%;
    padding: 12px;
    font-size: 1rem;
  }
}

/* ============================================================ */
/* EVENTS                                                        */
/* ============================================================ */

.event-content h3 {
  margin: 0 0 8px 0;
  font-size: 1.7em;
  font-weight: 700;
}

.event-description {
  font-size: 1.3em;
  line-height: 1.5;
  margin-bottom: 15px;
  display: block;
}

/* ============================================================ */
/* INFO BEREICH                                                  */
/* ============================================================ */

.info-bereich {
  display: flex;
  align-items: center;
  gap: 20px;
  margin: 20px 0;
}

.info-logo {
  width: 250px;
  flex-shrink: 0;
  height: auto;
}

.info-inhalt {
  border-left: 5px solid #b9242a;
  padding-left: 15px;
}

.info-inhalt p {
  margin: 0;
  line-height: 1.5;
}

@media (max-width: 800px) {
  .info-bereich {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .info-inhalt {
    border-left-width: 0px;
  }
}

/* ============================================================ */
/* ACCORDION                                                     */
/* ============================================================ */

.accordion-container {
  margin-top: 40px;
}

.fa-details {
  background-color: #f2f2e4;
  border: 1px solid #d1d1c2;
  border-radius: 8px;
  margin-bottom: 15px;
  transition: all 0.3s ease;
}

.fa-details summary {
  padding: 20px 30px;
  font-size: 1.8rem;
  font-weight: 700;
  color: #000;
  cursor: pointer;
  list-style: none;
  position: relative;
  outline: none;
}

.fa-details summary::after {
  content: "+";
  float: right;
  color: #b9242a;
  font-size: 1.5rem;
}

.fa-details[open] summary::after {
  content: "−";
}

.fa-details[open] {
  border-left: 5px solid #b9242a;
}

.details-content {
  padding: 0 30px 30px 30px;
  font-size: 1.25em;
  line-height: 1.5;
  color: #333;
}

.details-content h3 {
  font-size: 1.5rem;
  color: #b9242a;
  margin-top: 20px;
  border-bottom: 1px solid #d1d1c2;
  padding-bottom: 5px;
}

.details-content p {
  margin: 10px 0 15px 0;
}

.details-content ul {
  padding-left: 5px;
  margin-left: 0;
}

.details-content ul li {
  margin: 8px 0;
}

.details-content .abstract-icon-list li {
  font-size: 1.25rem;
  line-height: 1.4;
  display: flex;
  align-items: flex-start;
}

/* ============================================================ */
/* ICON LISTS                                                    */
/* ============================================================ */

.icon-list {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}

.icon-list li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 20px;
  font-size: 1.3em;
  line-height: 1.6;
}

.icon-list i {
  color: #b9242a;
  font-size: 1.4em;
  margin-right: 20px;
  margin-top: 4px;
  width: 30px;
  text-align: center;
}

.abstract-icon-list {
  list-style: none;
  padding: 0px;
  margin: 15px 0 10px 0;
}

.abstract-icon-list li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 10px;
  font-size: 1.3em;
  line-height: 1.5;
  color: #333;
}

.abstract-icon-list i {
  color: #b9242a;
  font-size: 0.8em;
  margin-right: 10px;
  margin-top: 5px;
  width: 20px;
  text-align: center;
  flex-shrink: 0;
}

.abstract-icon-list li div {
  flex: 1;
}

@media (max-width: 900px) {
  .abstract-icon-list {
    margin-left: 0px !important;
    padding-left: 0px !important;
  }
  .abstract-icon-list li {
    padding-left: 0px;
  }
}

/* ============================================================ */
/* DEFINITION & SYMPTOM LISTS                                   */
/* ============================================================ */

.definition-list {
  list-style: none;
  padding: 0;
  margin-top: 10px;
}

.definition-list li {
  font-size: 1.3em;
  margin-bottom: 8px;
  color: #333;
}

.definition-list li strong {
  color: #b9242a;
}

.symptom-list {
  list-style: none;
  padding: 0;
  margin: 30px 0;
}

.symptom-list li {
  position: relative;
  padding-left: 35px;
  margin-bottom: 15px;
  font-size: 1em;
  line-height: 1.6;
}

.cat-neuro::before {
  color: #b9242a;
}
.cat-ortho::before {
  color: #5d6d7e;
}
.cat-psych::before {
  color: #7d3c98;
}
.cat-organ::before {
  color: #2e86c1;
}
.cat-sens::before {
  color: #d68910;
}

/* ============================================================ */
/* TEAM                                                          */
/* ============================================================ */

.team-quick-nav {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 80px;
}

.team-quick-nav .nav-item {
  flex: 1;
  text-align: center;
  text-decoration: none;
  overflow: hidden;
}

.team-quick-nav img {
  width: 100%;
  aspect-ratio: 6 / 7;
  object-fit: cover;
  border-radius: 8px;
  border: 1px solid #d1d1c2;
  margin-bottom: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  transition:
    transform 0.4s ease-in-out,
    box-shadow 0.4s ease;
}

.team-quick-nav .nav-item:hover img {
  transform: scale(1.05);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.team-quick-nav .nav-item span {
  display: block;
  font-size: 0.95rem;
  font-weight: 600;
  color: #cc0000;
  transition: color 0.3s ease;
}

.team-quick-nav .nav-item:hover span {
  color: #000000;
}

.team-card {
  background-color: #f2f2e4;
  border: 1px solid #d1d1c2;
  border-radius: 8px;
  padding: 40px;
  margin-bottom: 50px;
  scroll-margin-top: 100px;
  text-align: left;
}

.team-card h3 {
  color: #000;
  font-size: 1.8rem;
  margin: 0 0 20px 0;
  font-weight: 700;
  border-bottom: 2px solid #b9242a;
  padding-bottom: 10px;
  display: inline-block;
  text-align: left;
}

.team-card p.rolle {
  color: #000000e1;
  font-family: "Livvic", sans-serif;
  font-size: 1.5em;
  font-weight: 700;
  margin-bottom: 20px;
  text-align: left;
}

.team-card .article-content p,
.team-card .article-content a {
  font-size: 1.3rem !important;
  line-height: 1.5;
}

.team-card .article-content p.rolle {
  margin-top: 35px;
}

.team-details [id] {
  scroll-margin-top: 1.5rem;
}

@media (max-width: 900px) {
  .team-quick-nav {
    display: none;
  }
  .team-card {
    text-align: left;
    padding: 25px 20px;
  }
  .team-card h3 {
    display: inline-block;
  }
}

/* ============================================================ */
/* VIDEO SECTION                                                 */
/* ============================================================ */

.video-section-container {
  display: flex;
  justify-content: center;
  background-color: #fffff3;
}

.video-gallery {
  width: 100%;
  max-width: 900px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.video-card {
  background: #fffff3;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
}

.video-header {
  background-color: #f2f2e4;
  padding: 25px 30px;
  border: 1px solid var(--brand-red);
  border-radius: 12px 12px 0 0;
}

.video-title {
  margin: 0 0 8px 0;
  color: var(--brand-red);
  font-size: 1.6rem;
  font-family: sans-serif;
  font-weight: 800;
}

.video-description {
  margin: 0;
  color: #444444;
  font-size: 1.05rem;
  line-height: 1.5;
}

.video-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background-color: #000;
}

.video-wrapper iframe,
.video-wrapper video {
  width: 100%;
  height: 100%;
  display: block;
  border: none;
}

@media (max-width: 600px) {
  .video-header {
    padding: 15px 20px;
  }
  .video-title {
    font-size: 1.3rem;
  }
}

/* ============================================================ */
/* PROJECT CARDS                                                 */
/* ============================================================ */

.project-container {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--gap);
  justify-items: center;
}

.project-card {
  background: #f2f2e4;
  border: 1px solid var(--accent-color);
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  width: 320px;
  max-width: 100%;
  text-align: center;
}

.project-image {
  width: 320px;
  max-width: 100%;
  height: auto;
  aspect-ratio: 325 / 500;
  object-fit: cover;
  display: block;
  background-color: #ddd;
}

.project-content {
  padding: 20px;
}

.project-title {
  font-size: 1.1rem;
  margin: 0 0 10px 0;
}

.project-title a {
  text-decoration: none;
  color: var(--accent-color);
}

.project-title a:hover {
  text-decoration: underline;
}

.project-description {
  font-size: 0.95rem;
  line-height: 1.5;
  color: #333;
  margin-bottom: 0;
}

@media (max-width: 900px) {
  .project-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .project-container {
    grid-template-columns: 1fr;
  }
  .project-card {
    width: 100%;
    max-width: 320px;
  }
}

/* ============================================================ */
/* GALLERY CARDS                                                 */
/* ============================================================ */

.grid-galerien {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 60px;
  justify-content: center;
  padding: 60px 20px;
}

.gallery-card {
  background: var(--card-bg);
  border: 1px solid var(--accent-color);
  border-radius: 12px;
  overflow: hidden;
  width: 300px;
  text-align: center;
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.gallery-card-link {
  text-decoration: none;
  color: inherit;
  display: block;
}

.gallery-image {
  width: 300px;
  height: 300px;
  object-fit: cover;
  display: block;
  background-color: #ddd;
  transition: transform 0.8s ease;
}

.gallery-card:hover .gallery-image {
  transform: scale(1.05);
}

.gallery-content {
  padding: 25px 20px;
}

.gallery-title {
  font-size: 1.15rem;
  margin: 0;
  color: var(--accent-color);
  line-height: 1.3;
}

.gallery-description {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-top: 12px;
  line-height: 1.4;
}

@media (max-width: 750px) {
  .grid-galerien {
    gap: 30px;
    padding: 30px 20px;
  }
  .gallery-card {
    width: 100%;
    max-width: 300px;
  }
}

/* ============================================================ */
/* MASONRY / LIGHTBOX                                            */
/* ============================================================ */

.gallery-header {
  max-width: 1200px;
  margin: 40px auto 20px;
  padding: 0 20px;
  text-align: center;
}

.gallery-header h2 {
  color: var(--text-muted);
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.masonry-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

.masonry-gallery {
  column-count: 3;
  column-gap: var(--gallery-gap);
}

.masonry-item {
  break-inside: avoid;
  margin-bottom: var(--gallery-gap);
  background: var(--card-bg);
  border: 1px solid var(--accent-color);
  border-radius: 8px;
  overflow: hidden;
  transition: transform 0.3s ease;
  cursor: pointer;
}

.masonry-item:hover {
  transform: scale(1.02);
}

.masonry-item img {
  width: 100%;
  height: auto;
  display: block;
}

.content-section {
  padding: 0px;
  margin: 0;
}

.fau-lightbox {
  display: flex !important;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.9);
  justify-content: center;
  align-items: center;
  flex-direction: column;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.4s ease,
    visibility 0.4s ease;
  user-select: none;
}

.fau-lightbox.active {
  opacity: 1;
  visibility: visible;
}

.lightbox-content {
  position: relative;
  top: 0 !important;
  left: 0 !important;
  transform: scale(0.95);
  display: block;
  max-width: 90%;
  max-height: 90vh;
  width: auto;
  height: auto;
  object-fit: contain;
  border: 3px solid #fff;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.5);
  transition:
    transform 0.4s ease,
    opacity 0.4s ease;
  opacity: 0;
}

.lightbox-content.fade-out {
  opacity: 0 !important;
  transform: scale(0.98);
}

.fau-lightbox.active .lightbox-content {
  transform: scale(1);
  opacity: 1;
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 35px;
  color: #fff;
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
}

.lightbox-prev,
.lightbox-next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: white;
  font-size: 50px;
  font-weight: bold;
  padding: 20px;
  text-decoration: none;
  user-select: none;
  transition: 0.3s;
}

.lightbox-prev {
  left: 10px;
}
.lightbox-next {
  right: 10px;
}

.lightbox-prev:hover,
.lightbox-next:hover {
  background-color: rgba(0, 0, 0, 0.8);
}

#lightbox-caption {
  color: white;
  margin-top: 15px;
  font-family: sans-serif;
  font-size: 1.1rem;
  transition: opacity 0.4s ease;
}

@media (max-width: 900px) {
  .masonry-gallery {
    column-count: 2;
  }
}

@media (max-width: 768px) {
  .masonry-wrapper {
    padding: 10px;
  }
  .masonry-item {
    cursor: default;
    pointer-events: none;
  }
  .masonry-item:hover {
    transform: none;
  }
}

@media (max-width: 600px) {
  .masonry-gallery {
    column-count: 1;
  }
}

/* ============================================================ */
/* CONTACT / FORM                                                */
/* ============================================================ */

.contact-invitation {
  background-color: #fffff3;
  text-align: center;
  padding: 30px 15px 10px 15px;
  display: flex;
  justify-content: center;
}

.contact-invitation h2 {
  color: #b9242a;
  font-size: 2rem;
  margin: 0 0 10px 0;
  position: relative;
  display: inline-block;
}

.contact-invitation h2::after {
  content: "";
  display: block;
  width: 50px;
  height: 3px;
  background: #b9242a;
  margin: 8px auto 0;
  border-radius: 2px;
}

.contact-invitation p {
  color: #272727;
  font-size: 1.1rem;
  max-width: 900px;
  margin: 15px auto 0;
  line-height: 1.5;
}

.section-wrapper {
  background-color: #fffff3;
  padding: 10px 15px 40px 15px;
  margin-top: 30px;
  display: flex;
  justify-content: center;
  min-height: auto;
  align-items: center;
}

.info-section {
  padding: 40px 15px 10px 15px;
  display: flex;
  justify-content: center;
  background-color: #fffff3;
}

.info-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  width: 100%;
}

.info-card {
  flex: 1 1 calc(50% - 10px);
  background-color: #f2f2e4;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid #e0e0e0;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  display: flex;
}

.card-image {
  flex: 0 0 120px;
  height: 100%;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.card-content {
  flex: 1;
  padding: 25px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.name-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: #000;
  margin: 0 0 15px 0;
  border-bottom: 2px solid #b9242a;
  display: inline-block;
  padding-bottom: 5px;
}

.card-contact-details p {
  margin: 8px 0;
  font-size: 1.1rem;
  font-weight: 400;
  color: #333;
  display: flex;
  align-items: center;
}

.red-icon {
  color: #b9242a;
  margin-right: 10px;
  font-size: 1rem;
}

.info-card a {
  color: #333;
  text-decoration: none;
  transition: color 0.2s;
}

.info-card a:hover {
  color: #b9242a;
  text-decoration: underline;
}

.content-container {
  width: 100%;
  max-width: 1100px;
  color: #161616;
}

.content-container p {
  text-align: left;
}
.content-container h2 {
  text-align: center;
}

.contact-card {
  background-color: #f2f2e4;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid #e0e0e0;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.form-header {
  background-color: #f2f2e4;
  padding: 30px 20px;
  border-bottom: 3px solid #b9242a;
  text-align: center;
}

.form-header h2 {
  margin: 0;
  color: #b9242a;
  font-size: 1.8rem;
}

.form-header p {
  margin: 10px 0 0;
  color: #353534;
  text-align: center;
  font-size: 1.1rem;
}

.form-body {
  padding: 30px;
}

.contact-form {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.form-group {
  flex: 1 1 100%;
  display: flex;
  flex-direction: column;
}

@media (min-width: 600px) {
  .half-width {
    flex: 1 1 calc(50% - 10px);
  }
}

label {
  font-weight: 600;
  margin-bottom: 8px;
  font-size: 0.95rem;
  color: #333;
}

input,
textarea {
  padding: 12px;
  border: 1px solid #d1d1c7;
  border-radius: 4px;
  font-size: 1rem;
  width: 100%;
  background-color: #ffffff;
  box-sizing: border-box;
  transition: all 0.3s ease;
}

input:focus,
textarea:focus {
  border-color: #b9242a;
  outline: none;
  box-shadow: 0 0 0 3px rgba(185, 36, 42, 0.1);
}

textarea {
  min-height: 120px;
  font-family: inherit;
}

.options-area {
  flex: 1 1 100%;
  padding: 10px 0;
}

.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 15px;
  cursor: pointer;
  font-size: 0.95rem;
  color: #444;
}

.checkbox-label input {
  width: 20px;
  height: 20px;
  margin-top: 2px;
  accent-color: #b9242a;
  flex-shrink: 0;
}

.btn-submit {
  flex: 1 1 100%;
  background-color: #b9242a;
  color: white;
  padding: 16px;
  border: none;
  border-radius: 6px;
  font-size: 1.2rem;
  font-weight: bold;
  cursor: pointer;
  transition:
    background 0.3s,
    transform 0.1s;
}

.btn-submit:hover {
  background-color: #000;
}
.btn-submit:active {
  transform: scale(0.99);
}

@media (max-width: 768px) {
  .info-card {
    flex: 1 1 100%;
  }
}

@media (max-width: 480px) {
  .info-card {
    flex-direction: row;
    align-items: stretch;
    min-height: 120px;
  }
  .card-image {
    flex: 0 0 100px;
    height: auto;
  }
  .card-content {
    padding: 15px;
  }
  .name-title {
    font-size: 1.25rem;
    margin-bottom: 10px;
  }
  .card-contact-details p {
    font-size: 1.15rem;
    margin: 5px 0;
  }
  .red-icon {
    margin-right: 8px;
  }
}

@media (min-width: 768px) {
  .info-section {
    padding-bottom: 0px;
  }
  .section-wrapper {
    padding-top: 20px;
  }
}

/* ============================================================ */
/* NEWS                                                          */
/* ============================================================ */

.news-section {
  margin-top: 20px;
}

.news-list {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.news-meta {
  display: block;
  font-size: 0.85rem;
  color: #888;
  margin-bottom: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.news-article h3 {
  color: #000;
  font-size: 1.8rem;
  margin-bottom: 20px;
  font-weight: 700;
  border-bottom: 2px solid #b9242a;
  padding-bottom: 10px;
  display: inline-block;
}

.news-article h4 {
  color: #000;
  font-size: 1.3rem;
  margin: 25px 0 10px 0;
  font-weight: 700;
  display: inline-block;
  border-bottom: 1px solid #d1d1c2;
  padding-bottom: 3px;
  width: auto;
}

.news-article h4 + * {
  clear: both;
  display: block;
}

.news-article p {
  font-size: 1.15rem;
  line-height: 1.7;
  margin-bottom: 20px;
  color: #333;
}

.news-link {
  color: #b9242a;
  text-decoration: underline;
  font-weight: 700;
}

/* ============================================================ */
/* EVENTS (CONTENT_AKTUELL)                                      */
/* ============================================================ */

.event-list {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.event-item {
  display: flex;
  align-items: flex-start;
  background-color: #f2f2e4;
  border: 1px solid #d1d1c2;
  border-radius: 8px;
  padding: 25px;
}

.event-date-column {
  flex: 0 0 120px;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-right: 40px;
}

.event-date {
  width: 85px;
  height: 85px;
  background-color: #b9242a;
  color: #fff;
  border-radius: 6px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  line-height: 1.1;
  margin-bottom: 12px;
}

.event-date .day {
  font-size: 2rem;
  font-weight: bold;
}

.event-date .month {
  font-size: 0.9rem;
  text-transform: uppercase;
}

.event-time-fixed {
  font-size: 1.2rem;
  font-weight: 600;
  color: #b9242a;
  text-align: center;
}

.event-content {
  flex-grow: 1;
}

.event-location {
  font-size: 1rem;
  color: #555;
  display: block;
  font-weight: 600;
  margin-top: 15px;
}

.event-location::before {
  content: "\f015";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  color: #b9242a;
  margin-right: 10px;
  font-size: 1.1rem;
}

.event-action {
  margin-left: 20px;
  align-self: center;
}

.btn-info {
  display: inline-block;
  padding: 10px 20px;
  border: 2px solid #b9242a;
  color: #b9242a;
  text-decoration: none;
  border-radius: 4px;
  font-weight: bold;
}

@media (max-width: 768px) {
  .event-item {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .event-date-column {
    margin-right: 0;
    margin-bottom: 20px;
    width: 100%;
  }
  .event-action {
    margin-left: 0;
    margin-top: 20px;
    width: 100%;
  }
  .btn-info {
    display: block;
    width: 100%;
  }
}

/* ============================================================ */
/* SCROLL TO TOP                                                 */
/* ============================================================ */

.scroll-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background-color: #b9242a;
  color: #ffffff !important;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  z-index: 9999;
  text-decoration: none;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s;
}

.scroll-to-top.show {
  opacity: 1;
  visibility: visible;
}

.scroll-to-top:hover {
  background-color: #000;
  transform: scale(1.1);
}

/* ============================================================ */
/* HEADER                                                        */
/* ============================================================ */

.main-header {
  background-color: var(--brand-red);
  width: 100%;
  height: var(--header-height);
  color: var(--brand-light);
  display: flex;
  align-items: center;
  padding: 0 5%;
  position: relative;
  z-index: 1000;
}

.header-content {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo-container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.logo-container img {
  width: 240px;
  height: auto;
  display: block;
  margin-bottom: 8px;
}

.logo-text {
  white-space: nowrap;
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--brand-light);
  line-height: 1.1;
  letter-spacing: 1.2px;
  display: inline-block;
  transform: scaleY(1.15);
  transform-origin: left;
}

.main-menu {
  list-style: none;
  display: flex;
  align-items: center;
}

.main-menu > li {
  position: relative;
}

.main-menu > li > a {
  color: var(--brand-light);
  text-decoration: none;
  padding: 15px 22px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.6rem;
  font-weight: 400;
  position: relative;
}

.main-menu > li > a::before {
  content: "";
  position: absolute;
  bottom: 8px;
  left: 50%;
  width: 0;
  height: 2px;
  background-color: var(--brand-light);
  transition: var(--transition);
  transform: translateX(-50%);
}

.main-menu > li:hover > a::before {
  width: 60%;
}

.has-dropdown > a::after {
  content: "";
  width: 0;
  height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 6px solid var(--brand-light);
  transition: transform 0.3s ease;
  margin-top: 4px;
}

.has-dropdown:hover > a::after {
  transform: rotate(180deg);
}

.dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  background-color: var(--brand-light);
  min-width: 300px;
  list-style: none;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  border-radius: 4px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: var(--transition);
  z-index: 1100;
}

.has-dropdown:hover .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown a {
  color: var(--text-dark);
  padding: 12px 20px;
  text-decoration: none;
  display: block;
  border-bottom: 1px solid #eee;
  font-size: 1.1rem;
  transition: var(--transition);
}

.dropdown a:hover {
  background-color: #fdf2f2;
  color: var(--brand-red);
}

.desc {
  display: block;
  font-size: 0.85rem;
  font-style: italic;
  color: var(--text-muted);
  margin-top: 2px;
}

.mobile-nav-toggle {
  display: none;
  cursor: pointer;
  z-index: 3000;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  padding: 10px;
  height: 50px;
}

.mobile-nav-toggle span {
  width: 30px;
  height: 3px;
  background-color: var(--brand-light);
  transition: background-color 0.3s ease;
}

.mobile-nav-toggle.active span {
  background-color: var(--brand-red);
}

.mobile-logo-wrapper {
  display: none;
}

@media (max-width: 1124px) {
  .mobile-nav-toggle {
    display: flex;
  }

  .navigation {
    position: fixed;
    top: 0;
    right: 0;
    width: 320px;
    height: 100vh;
    background-color: var(--brand-light);
    z-index: 2000;
    transform: translateX(100%);
    transition: transform 0.4s ease;
    overflow-y: auto;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
  }

  .navigation.active {
    transform: translateX(0);
  }

  .mobile-logo-wrapper {
    display: flex;
    align-items: center;
    height: var(--header-height);
    padding-left: 25px;
    width: 100%;
  }

  .mobile-logo-wrapper img {
    width: 140px;
    height: auto;
  }

  .main-menu {
    flex-direction: column;
    align-items: flex-start;
  }

  .main-menu > li {
    width: 100%;
  }

  .main-menu > li > a {
    font-size: 1.3rem;
    padding: 12px 25px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    width: 100%;
    color: #000000;
  }

  .main-menu > li > a::before {
    display: none;
  }

  .main-menu > li > a:hover,
  .dropdown a:hover {
    background-color: rgba(0, 0, 0, 0.05);
    color: var(--brand-red) !important;
  }

  .has-dropdown > a::after {
    border-top-color: #000 !important;
    margin-left: auto;
  }

  .dropdown {
    position: static !important;
    background-color: rgba(0, 0, 0, 0.03) !important;
    display: block !important;
    max-height: 0 !important;
    overflow: hidden !important;
    transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1) !important;
    width: 100% !important;
    box-shadow: none !important;
    border-radius: 0 !important;
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
  }

  .has-dropdown.open .dropdown {
    max-height: 400px !important;
  }

  .dropdown a {
    color: #000000 !important;
    padding: 12px 25px 12px 45px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    font-size: 1.25rem;
  }

  .dropdown .desc {
    color: #555555 !important;
    font-size: 1rem;
  }

  .nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1500;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
  }

  .nav-overlay.active {
    opacity: 1;
    visibility: visible;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
  }

  h3 {
    margin-top: 20px;
  }
}

/* ============================================================ */
/* FOOTER                                                        */
/* ============================================================ */

.fau-footer {
  background-color: var(--fau-footer-bg);
  color: var(--fau-text);
  padding: 70px 20px 0 20px;
  border-top: 6px solid var(--fau-red);
}

.fau-footer-container {
  max-width: 1150px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 20px 70px;
  padding-bottom: 70px;
}

.fau-footer h3 {
  color: var(--fau-red);
  font-size: 0.85rem;
  margin: 0 0 20px 0;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 700;
}

.fau-item-logo {
  grid-column: 1;
  grid-row: 1;
}
.fau-item-search {
  grid-column: 2;
  grid-row: 1;
}
.fau-item-contact {
  grid-column: 3;
  grid-row: 1;
}
.fau-item-slogan {
  grid-column: 1;
  grid-row: 2;
  padding-top: 30px;
}
.fau-item-nav {
  grid-column: 2;
  grid-row: 2;
  padding-top: 30px;
}
.fau-item-social {
  grid-column: 3;
  grid-row: 2;
  padding-top: 30px;
}

.fau-logo-large {
  max-width: 250px;
  height: auto;
  display: block;
}

.fau-search-bar {
  display: flex;
  background: #3d3e3c;
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid #4a4b48;
}

.fau-search-bar input {
  background: transparent;
  border: none;
  padding: 12px;
  color: white;
  width: 100%;
  outline: none;
}

.fau-search-bar button {
  background-color: var(--fau-red);
  color: white;
  border: none;
  padding: 0 18px;
  cursor: pointer;
}

.fau-contact-link,
.fau-nav-list a {
  color: var(--fau-text);
  text-decoration: none;
  transition: color 0.3s ease;
}

.fau-nav-list a {
  color: var(--fau-text-muted);
}

.fau-contact-link:hover,
.fau-nav-list a:hover {
  color: var(--fau-red) !important;
}

.fau-contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.fau-contact-item i {
  color: var(--fau-red);
  width: 20px;
}

.fau-slogan-wrap {
  border-left: 3px solid var(--fau-red);
  padding-left: 20px;
}

.fau-brand-name {
  font-weight: 500;
  font-size: 1.1rem;
  display: block;
}

.fau-brand-sub {
  font-size: 0.9rem;
  color: var(--fau-text-muted);
}

.fau-nav-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.fau-social-icons {
  display: flex;
  gap: 25px;
}

.fau-social-icons a {
  color: var(--fau-text-muted);
  font-size: 1.8rem;
  transition: all 0.3s ease;
}

.fau-social-icons a:hover {
  color: white;
  transform: scale(1.1);
}

.fa-facebook:hover {
  color: #1877f2 !important;
}
.fa-instagram:hover {
  color: #e4405f !important;
}

.fau-footer-bottom {
  background-color: var(--fau-bottom-bg);
  text-align: center;
  padding: 25px;
  font-size: 0.8rem;
  color: #666;
  border-top: 1px solid #333;
}

@media (max-width: 900px) {
  .fau-footer-container {
    display: flex;
    flex-direction: column;
    text-align: center;
    gap: 0;
  }
  .fau-item-logo {
    order: 1;
    margin-bottom: 20px;
  }
  .fau-item-slogan {
    order: 2;
    margin-bottom: 50px;
    padding-top: 0;
  }
  .fau-item-search {
    order: 3;
    margin-bottom: 20px;
  }
  .fau-item-nav {
    order: 4;
    margin-bottom: 50px;
    padding-top: 0;
  }
  .fau-item-contact {
    order: 5;
    margin-bottom: 20px;
  }
  .fau-item-social {
    order: 6;
    margin-bottom: 50px;
    padding-top: 0;
  }
  .fau-logo-large {
    margin: 0 auto;
  }
  .fau-slogan-wrap {
    border-left: none;
    border-top: 2px solid var(--fau-red);
    padding-top: 20px;
    padding-left: 0;
  }
  .fau-contact-item,
  .fau-social-icons {
    justify-content: center;
  }
  .fau-search-bar {
    max-width: 350px;
    margin: 0 auto;
  }
}

/* ============================================================ */
/* HOME – HERO SLIDER                                            */
/* ============================================================ */

.hero-slider {
  position: relative;
  width: 100%;
  height: 700px;
  overflow: hidden;
  background-color: #000;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 100px;
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 3s ease-in-out;
  z-index: 1;
}

.slide.active {
  opacity: 1;
  z-index: 2;
}

.hero-slider::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom,
    transparent 30%,
    rgba(0, 0, 0, 0.8) 100%
  );
  z-index: 3;
}

.hero-content {
  position: relative;
  z-index: 10;
  color: var(--brand-light);
  text-align: center;
  width: 90%;
  max-width: 1200px;
}

.text-slide {
  display: none;
  opacity: 0;
}

.text-slide.active {
  display: block;
  animation: ultraSlowFade 7s ease-in-out forwards;
}

@keyframes ultraSlowFade {
  0% {
    opacity: 0;
    transform: translateY(15px);
  }
  15% {
    opacity: 0;
  }
  35% {
    opacity: 1;
    transform: translateY(0);
  }
  80% {
    opacity: 1;
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    transform: translateY(-10px);
  }
}

.text-slide h2 {
  font-family: "Livvic", sans-serif;
  color: #fffff3;
  font-size: 4em;
  margin-bottom: 15px;
  text-shadow: 2px 2px 20px rgba(0, 0, 0, 0.9);
}

.text-slide p {
  font-family: "Livvic", sans-serif;
  font-size: 2em;
  text-shadow: 2px 2px 20px rgba(0, 0, 0, 0.9);
}

@media (max-width: 768px) {
  .hero-slider {
    height: 450px;
    padding-bottom: 40px;
  }
  .text-slide h2 {
    font-size: 2.2em !important;
    line-height: 1.2 !important;
  }
  .text-slide p {
    font-size: 1.6em !important;
  }
}

/* ============================================================ */
/* HOME – FEATURE CARDS                                          */
/* ============================================================ */

.triple-card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.feature-card {
  background-color: var(--bg-beige);
  padding: 40px 25px;
  border-radius: 12px;
  text-align: center;
  border-bottom: 6px solid var(--brand-red);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.card-icon {
  font-size: 3.5rem;
  color: var(--brand-red);
  margin-bottom: 20px;
}

.feature-card h3 {
  margin-bottom: 15px;
  color: #333;
  font-size: 1.7em;
}

.feature-card p {
  margin-bottom: 25px;
  line-height: 1.6;
  color: #555;
  flex-grow: 1;
  font-size: 1.3em;
}

.card-btn {
  display: inline-block;
  width: 180px;
  padding: 12px 0;
  border: 2px solid var(--brand-red);
  color: var(--brand-red);
  text-decoration: none;
  font-weight: 700;
  border-radius: 4px;
  transition: 0.3s;
}

.main-content .card-btn:hover {
  background: var(--brand-red);
  color: white;
}

.disclaimer {
  margin: 60px auto;
  padding: 35px;
  background: linear-gradient(135deg, #e2ede5 0%, #d6e4db 100%);
  border-left: 12px solid var(--brand-red);
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 30px;
}

.disclaimer::before {
  content: "\f05a";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 4rem;
  color: var(--brand-red);
  flex-shrink: 0;
}

.disclaimer span {
  color: #2e7d32;
  font-size: 1.3em;
  font-weight: 600;
  text-align: left;
}

@media (max-width: 1024px) {
  .triple-card-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .disclaimer {
    flex-direction: column;
    text-align: center;
  }
  .disclaimer span {
    text-align: center;
  }
  .feature-card h3 {
    font-size: 1.8em !important;
    margin-bottom: 10px;
  }
  .feature-card p {
    font-size: 1.3em !important;
    line-height: 1.5 !important;
  }
}
