@charset "UTF-8";
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

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

body {
  font-family: Calibri, "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  font-size: 18px;
  line-height: 1.6;
  color: #333333;
  background-color: #ffffff;
  margin: 0;
  padding: 0;
  position: relative;
  overflow-x: hidden;
}
body::before {
  content: "";
  position: absolute;
  top: -300px;
  left: -200px;
  width: 600px;
  height: 600px;
  background: rgba(255, 243, 194, 0.3);
  border-radius: 40% 60% 70% 30%/40% 50% 60% 50%;
  z-index: -1;
  -webkit-animation: float-slow 12s ease-in-out infinite;
          animation: float-slow 12s ease-in-out infinite;
  pointer-events: none;
}
body::after {
  content: "";
  position: absolute;
  bottom: 50px;
  right: -150px;
  width: 500px;
  height: 500px;
  background: rgba(255, 222, 89, 0.28);
  border-radius: 60% 40% 30% 70%/60% 30% 70% 40%;
  z-index: -1;
  animation: float 10s ease-in-out infinite reverse;
  pointer-events: none;
}

h1, h2, h3, h4, h5, h6 {
  margin-top: 0;
  margin-bottom: 1.5rem;
  font-family: Calibri, "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  font-weight: 700;
  line-height: 1.2;
  color: #333333;
}

h1 {
  font-size: 32px;
  line-height: 1.2;
}
@media (min-width: 768px) {
  h1 {
    font-size: 40px;
  }
}
@media (min-width: 1024px) {
  h1 {
    font-size: 48px;
  }
}

h2 {
  font-size: 28px;
}
@media (min-width: 768px) {
  h2 {
    font-size: 32px;
  }
}
@media (min-width: 1024px) {
  h2 {
    font-size: 36px;
  }
}

h3 {
  font-size: 24px;
}
@media (min-width: 768px) {
  h3 {
    font-size: 26px;
  }
}
@media (min-width: 1024px) {
  h3 {
    font-size: 28px;
  }
}

h4 {
  font-size: 20px;
}
@media (min-width: 1024px) {
  h4 {
    font-size: 24px;
  }
}

h5 {
  font-size: 18px;
}
@media (min-width: 1024px) {
  h5 {
    font-size: 20px;
  }
}

h6 {
  font-size: 18px;
}

p {
  margin-top: 0;
  margin-bottom: 1.5rem;
}

a {
  color: #ffde59;
  text-decoration: none;
  -webkit-transition: opacity 0.3s ease-in-out;
  transition: opacity 0.3s ease-in-out;
}
a:hover {
  color: #ffde59;
  text-decoration: underline;
}
a:focus {
  outline: 2px solid #ffde59;
  outline-offset: 2px;
}

ul, ol, dl {
  margin-top: 0;
  margin-bottom: 1.5rem;
  padding-left: 2rem;
}

li {
  margin-bottom: 1rem;
}

dt {
  font-weight: 700;
}

dd {
  margin-left: 0;
  margin-bottom: 1rem;
}

code,
kbd,
samp,
pre {
  font-family: "Courier New", Courier, monospace;
  font-size: 0.9em;
}

code {
  padding: 0.125rem 0.25rem;
  background-color: #f5f5f5;
  border-radius: 0.25rem;
}

pre {
  display: block;
  padding: 1.5rem;
  margin: 0 0 1.5rem 0;
  background-color: #f5f5f5;
  border-radius: 0.5rem;
  border: 1px solid #dddddd;
  overflow-x: auto;
}
pre code {
  padding: 0;
  background-color: transparent;
  border-radius: 0;
}

img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
  height: auto;
}

img {
  border-style: none;
  vertical-align: middle;
}

table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 1.5rem;
  background-color: #ffffff;
  border: 1px solid #dddddd;
}

th,
td {
  padding: 1rem;
  text-align: left;
  vertical-align: middle;
  border: 1px solid #dddddd;
}

th {
  font-weight: 700;
  background-color: #f5f5f5;
  color: #333333;
}

tbody tr:nth-child(odd) {
  background-color: #fafafa;
}

tbody tr:hover {
  background-color: #f0f0f0;
}

fieldset {
  margin: 0;
  padding: 0;
  border: 0;
}

legend {
  padding: 0;
  margin-bottom: 1.5rem;
  font-size: 20px;
  font-weight: 700;
  color: #333333;
}

label {
  display: block;
  margin-bottom: 0.25rem;
  font-weight: 600;
  color: #333333;
  cursor: pointer;
}

input,
textarea,
select,
button {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
  color: inherit;
}

input[type=text],
input[type=email],
input[type=password],
input[type=number],
input[type=date],
input[type=time],
input[type=datetime-local],
input[type=month],
input[type=week],
input[type=url],
input[type=tel],
input[type=search],
textarea,
select {
  display: block;
  width: 100%;
  padding: 1rem;
  margin-bottom: 1.5rem;
  border: 1px solid #cccccc;
  border-radius: 0.5rem;
  background-color: #ffffff;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
input[type=text]:focus,
input[type=email]:focus,
input[type=password]:focus,
input[type=number]:focus,
input[type=date]:focus,
input[type=time]:focus,
input[type=datetime-local]:focus,
input[type=month]:focus,
input[type=week]:focus,
input[type=url]:focus,
input[type=tel]:focus,
input[type=search]:focus,
textarea:focus,
select:focus {
  outline: none;
  border-color: #ffde59;
  -webkit-box-shadow: 0 0 0 3px rgba(0, 51, 102, 0.1);
          box-shadow: 0 0 0 3px rgba(0, 51, 102, 0.1);
}
input[type=text]:disabled,
input[type=email]:disabled,
input[type=password]:disabled,
input[type=number]:disabled,
input[type=date]:disabled,
input[type=time]:disabled,
input[type=datetime-local]:disabled,
input[type=month]:disabled,
input[type=week]:disabled,
input[type=url]:disabled,
input[type=tel]:disabled,
input[type=search]:disabled,
textarea:disabled,
select:disabled {
  background-color: #f5f5f5;
  color: #666666;
  cursor: not-allowed;
}

textarea {
  resize: vertical;
  min-height: 100px;
}

select {
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 1.5em 1.5em;
  padding-right: 3rem;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

input[type=checkbox],
input[type=radio] {
  width: auto;
  margin-right: 0.5rem;
  margin-bottom: 0;
  cursor: pointer;
}

input[type=checkbox] + label,
input[type=radio] + label {
  display: inline-block;
  margin-bottom: 0;
  margin-left: 0.5rem;
  font-weight: 400;
}

button,
input[type=button],
input[type=submit],
input[type=reset],
input[type=file] {
  cursor: pointer;
}

button:disabled,
input[type=button]:disabled,
input[type=submit]:disabled,
input[type=reset]:disabled {
  opacity: 0.65;
  cursor: not-allowed;
}

blockquote {
  margin: 0 0 1.5rem 0;
  padding: 1.5rem 1.5rem 1.5rem 2rem;
  border-left: 4px solid #ffde59;
  background-color: #f5f5f5;
  color: #666666;
  font-style: italic;
}
blockquote p {
  margin-bottom: 0;
}
blockquote p:last-child {
  margin-bottom: 0;
}
blockquote footer {
  margin-top: 1rem;
  font-size: 16px;
  color: #666666;
}
blockquote footer::before {
  content: "— ";
}

hr {
  margin: 3rem 0;
  border: 0;
  border-top: 1px solid #dddddd;
}

code {
  padding: 0.2em 0.4em;
  background-color: #f5f5f5;
  border-radius: 0.25rem;
}

pre {
  display: block;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  background-color: #f5f5f5;
  border-left: 4px solid #ffde59;
  overflow-x: auto;
}
pre code {
  padding: 0;
  background-color: transparent;
  border-radius: 0;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

form {
  margin-bottom: 2rem;
}

fieldset {
  margin-bottom: 1.5rem;
  border: none;
  padding: 0;
}

legend {
  display: block;
  width: 100%;
  margin-bottom: 1rem;
  font-weight: 700;
}

label {
  display: block;
  margin-bottom: 1rem;
  font-weight: 600;
}

input,
textarea,
select {
  font-family: Calibri, "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  font-size: 18px;
  line-height: 1.6;
}

input[type=text],
input[type=email],
input[type=password],
input[type=number],
input[type=date],
input[type=time],
input[type=search],
input[type=tel],
input[type=url],
textarea,
select {
  display: block;
  width: 100%;
  padding: 1rem;
  margin-bottom: 1.5rem;
  border: 1px solid #cccccc;
  border-radius: 0.5rem;
  background-color: #ffffff;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
input[type=text]:focus,
input[type=email]:focus,
input[type=password]:focus,
input[type=number]:focus,
input[type=date]:focus,
input[type=time]:focus,
input[type=search]:focus,
input[type=tel]:focus,
input[type=url]:focus,
textarea:focus,
select:focus {
  outline: none;
  border-color: #ffde59;
  -webkit-box-shadow: 0 0 0 3px rgba(0, 51, 102, 0.1);
          box-shadow: 0 0 0 3px rgba(0, 51, 102, 0.1);
}

textarea {
  resize: vertical;
  min-height: 120px;
}

button,
input[type=button],
input[type=submit],
input[type=reset] {
  cursor: pointer;
}

table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 2rem;
}

th,
td {
  padding: 1rem;
  text-align: left;
  border-bottom: 1px solid #dddddd;
}

th {
  background-color: #f5f5f5;
  font-weight: 700;
}

hr {
  margin: 2rem 0;
  border: none;
  border-top: 1px solid #dddddd;
}

blockquote {
  margin: 2rem 0;
  padding-left: 2rem;
  border-left: 4px solid #ffde59;
  font-style: italic;
  color: #666666;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

.container {
  width: 100%;
  max-width: 100%;
  margin-right: auto;
  margin-left: auto;
  padding-right: 1.5rem;
  padding-left: 1.5rem;
}
@media (min-width: 768px) {
  .container {
    max-width: 540px;
  }
}
@media (min-width: 1024px) {
  .container {
    max-width: 720px;
  }
}
@media (min-width: 1440px) {
  .container {
    max-width: 1024px;
  }
}
@media (min-width: 1920px) {
  .container {
    max-width: 1440px;
  }
}

.container-fluid {
  width: 100%;
  padding-right: 1.5rem;
  padding-left: 1.5rem;
  margin-right: auto;
  margin-left: auto;
}

.row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-right: -0.75rem;
  margin-left: -0.75rem;
}

.col {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 100%;
          flex: 0 0 100%;
  padding-right: 0.75rem;
  padding-left: 0.75rem;
  min-height: 1px;
}
@media (min-width: 768px) {
  .col.col-sm-1 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 8.33333%;
            flex: 0 0 8.33333%;
  }
  .col.col-sm-2 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 16.66667%;
            flex: 0 0 16.66667%;
  }
  .col.col-sm-3 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 25%;
            flex: 0 0 25%;
  }
  .col.col-sm-4 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 33.33333%;
            flex: 0 0 33.33333%;
  }
  .col.col-sm-5 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 41.66667%;
            flex: 0 0 41.66667%;
  }
  .col.col-sm-6 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
            flex: 0 0 50%;
  }
  .col.col-sm-7 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 58.33333%;
            flex: 0 0 58.33333%;
  }
  .col.col-sm-8 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 66.66667%;
            flex: 0 0 66.66667%;
  }
  .col.col-sm-9 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 75%;
            flex: 0 0 75%;
  }
  .col.col-sm-10 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 83.33333%;
            flex: 0 0 83.33333%;
  }
  .col.col-sm-11 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 91.66667%;
            flex: 0 0 91.66667%;
  }
  .col.col-sm-12 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
  }
}
@media (min-width: 1024px) {
  .col.col-md-1 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 8.33333%;
            flex: 0 0 8.33333%;
  }
  .col.col-md-2 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 16.66667%;
            flex: 0 0 16.66667%;
  }
  .col.col-md-3 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 25%;
            flex: 0 0 25%;
  }
  .col.col-md-4 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 33.33333%;
            flex: 0 0 33.33333%;
  }
  .col.col-md-5 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 41.66667%;
            flex: 0 0 41.66667%;
  }
  .col.col-md-6 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
            flex: 0 0 50%;
  }
  .col.col-md-7 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 58.33333%;
            flex: 0 0 58.33333%;
  }
  .col.col-md-8 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 66.66667%;
            flex: 0 0 66.66667%;
  }
  .col.col-md-9 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 75%;
            flex: 0 0 75%;
  }
  .col.col-md-10 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 83.33333%;
            flex: 0 0 83.33333%;
  }
  .col.col-md-11 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 91.66667%;
            flex: 0 0 91.66667%;
  }
  .col.col-md-12 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
  }
}
@media (min-width: 1440px) {
  .col.col-lg-1 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 8.33333%;
            flex: 0 0 8.33333%;
  }
  .col.col-lg-2 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 16.66667%;
            flex: 0 0 16.66667%;
  }
  .col.col-lg-3 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 25%;
            flex: 0 0 25%;
  }
  .col.col-lg-4 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 33.33333%;
            flex: 0 0 33.33333%;
  }
  .col.col-lg-5 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 41.66667%;
            flex: 0 0 41.66667%;
  }
  .col.col-lg-6 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
            flex: 0 0 50%;
  }
  .col.col-lg-7 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 58.33333%;
            flex: 0 0 58.33333%;
  }
  .col.col-lg-8 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 66.66667%;
            flex: 0 0 66.66667%;
  }
  .col.col-lg-9 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 75%;
            flex: 0 0 75%;
  }
  .col.col-lg-10 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 83.33333%;
            flex: 0 0 83.33333%;
  }
  .col.col-lg-11 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 91.66667%;
            flex: 0 0 91.66667%;
  }
  .col.col-lg-12 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
  }
}
@media (min-width: 1920px) {
  .col.col-xl-1 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 8.33333%;
            flex: 0 0 8.33333%;
  }
  .col.col-xl-2 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 16.66667%;
            flex: 0 0 16.66667%;
  }
  .col.col-xl-3 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 25%;
            flex: 0 0 25%;
  }
  .col.col-xl-4 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 33.33333%;
            flex: 0 0 33.33333%;
  }
  .col.col-xl-5 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 41.66667%;
            flex: 0 0 41.66667%;
  }
  .col.col-xl-6 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
            flex: 0 0 50%;
  }
  .col.col-xl-7 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 58.33333%;
            flex: 0 0 58.33333%;
  }
  .col.col-xl-8 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 66.66667%;
            flex: 0 0 66.66667%;
  }
  .col.col-xl-9 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 75%;
            flex: 0 0 75%;
  }
  .col.col-xl-10 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 83.33333%;
            flex: 0 0 83.33333%;
  }
  .col.col-xl-11 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 91.66667%;
            flex: 0 0 91.66667%;
  }
  .col.col-xl-12 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
  }
}

.row-gap-0 {
  gap: 0;
}

.row-gap-xs {
  gap: 0.5rem;
}

.row-gap-sm {
  gap: 1rem;
}

.row-gap-md {
  gap: 1.5rem;
}

.row-gap-lg {
  gap: 2rem;
}

.row-gap-xl {
  gap: 3rem;
}

.btn {
  display: inline-block;
  padding: 1rem 1.5rem;
  font-family: Calibri, "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  font-size: 18px;
  font-weight: 600;
  text-align: center;
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
  border: 1px solid transparent;
  border-radius: 0.5rem;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
.btn:hover {
  text-decoration: none;
}
.btn:focus {
  outline: none;
  -webkit-box-shadow: 0 0 0 3px rgba(0, 51, 102, 0.25);
          box-shadow: 0 0 0 3px rgba(0, 51, 102, 0.25);
}

.btn-primary {
  background-color: #ffde59;
  border-color: #ffde59;
  color: #ffffff;
}
.btn-primary:hover {
  background-color: rgb(255, 211.8614457831, 38);
  border-color: rgb(255, 211.8614457831, 38);
}

.btn-secondary {
  background-color: #ffde59;
  border-color: #ffde59;
  color: #ffffff;
}
.btn-secondary:hover {
  background-color: rgb(255, 211.8614457831, 38);
  border-color: rgb(255, 211.8614457831, 38);
}

.btn-outline {
  background-color: transparent;
  border-color: #ffde59;
  color: #ffde59;
}
.btn-outline:hover {
  background-color: #ffde59;
  color: #ffffff;
}

.btn-sm {
  padding: 0.5rem 1rem;
  font-size: 16px;
}

.btn-lg {
  padding: 1.5rem 2rem;
  font-size: 20px;
}

.card {
  background-color: #ffffff;
  border: 1px solid #dddddd;
  border-radius: 1rem;
  -webkit-box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
          box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
  overflow: hidden;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.card:hover {
  -webkit-box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
          box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
  -webkit-transform: translateY(-4px);
          transform: translateY(-4px);
}

.card-header {
  padding: 1.5rem;
  background-color: #f5f5f5;
  border-bottom: 1px solid #dddddd;
}

.card-body {
  padding: 1.5rem;
}

.card-footer {
  padding: 1.5rem;
  background-color: #f5f5f5;
  border-top: 1px solid #dddddd;
}

.card-image {
  width: 100%;
  height: auto;
  display: block;
}

.badge {
  display: inline-block;
  padding: 0.25rem 0.5rem;
  font-size: 0.75rem;
  font-weight: 700;
  line-height: 1;
  text-align: center;
  white-space: nowrap;
  border-radius: 1rem;
  background-color: #f5f5f5;
  color: #333333;
}

.badge-primary {
  background-color: #ffde59;
  color: #ffffff;
}

.badge-secondary {
  background-color: #ffde59;
  color: #ffffff;
}

.badge-success {
  background-color: #28a745;
  color: #ffffff;
}

.badge-danger {
  background-color: #dc3545;
  color: #ffffff;
}

.alert {
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  border: 1px solid transparent;
  border-radius: 0.5rem;
}

.alert-info {
  background-color: #d1ecf1;
  border-color: #bee5eb;
  color: #0c5460;
}

.alert-success {
  background-color: #d4edda;
  border-color: #c3e6cb;
  color: #155724;
}

.alert-warning {
  background-color: #fff3cd;
  border-color: #ffeaa7;
  color: #856404;
}

.alert-danger {
  background-color: #f8d7da;
  border-color: #f5c6cb;
  color: #721c24;
}

.pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0;
  gap: 0.25rem;
}

.pagination-item a, .pagination-item span {
  display: block;
  padding: 1rem;
  border: 1px solid #dddddd;
  border-radius: 0.5rem;
  color: #ffde59;
  text-decoration: none;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.pagination-item a:hover, .pagination-item span:hover {
  background-color: #ffde59;
  color: #ffffff;
}
.pagination-item.active a, .pagination-item.active span {
  background-color: #ffde59;
  color: #ffffff;
  border-color: #ffde59;
}
.pagination-item.disabled a, .pagination-item.disabled span {
  color: #999999;
  cursor: not-allowed;
}
.pagination-item.disabled a:hover, .pagination-item.disabled span:hover {
  background-color: transparent;
  color: #999999;
}

.breadcrumb {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem 0;
  gap: 1rem;
}

.breadcrumb-item a {
  color: #ffde59;
  text-decoration: none;
}
.breadcrumb-item a:hover {
  text-decoration: underline;
}
.breadcrumb-item.active {
  color: #666666;
}
.breadcrumb-item::after {
  content: "/";
  margin-left: 1rem;
  color: #666666;
}
.breadcrumb-item:last-child::after {
  display: none;
}

.media {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 1.5rem;
}
.media > img {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.media-body {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.list-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  list-style: none;
  padding: 0;
  margin: 0;
  border: 1px solid #dddddd;
  border-radius: 0.5rem;
  overflow: hidden;
}

.list-group-item.active {
  background-color: #ffde59;
  color: #ffffff;
  border-color: #ffde59;
}

.list-group-item.disabled {
  opacity: 0.65;
  cursor: not-allowed;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-label {
  display: block;
  margin-bottom: 0.25rem;
  font-weight: 600;
  color: #333333;
}

.form-control {
  display: block;
  width: 100%;
  padding: 1rem;
  border: 1px solid #cccccc;
  border-radius: 0.5rem;
  background-color: #ffffff;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.form-control:focus {
  outline: none;
  border-color: #ffde59;
  -webkit-box-shadow: 0 0 0 3px rgba(0, 51, 102, 0.1);
          box-shadow: 0 0 0 3px rgba(0, 51, 102, 0.1);
}
.form-control:disabled {
  background-color: #f5f5f5;
  opacity: 0.65;
  cursor: not-allowed;
}
.form-control.is-invalid {
  border-color: #dc3545;
}
.form-control.is-invalid:focus {
  -webkit-box-shadow: 0 0 0 3px rgba(220, 53, 69, 0.25);
          box-shadow: 0 0 0 3px rgba(220, 53, 69, 0.25);
}
.form-control.is-valid {
  border-color: #28a745;
}
.form-control.is-valid:focus {
  -webkit-box-shadow: 0 0 0 3px rgba(40, 167, 69, 0.25);
          box-shadow: 0 0 0 3px rgba(40, 167, 69, 0.25);
}

.invalid-feedback,
.valid-feedback {
  display: none;
  margin-top: 0.25rem;
  font-size: 16px;
}

.invalid-feedback {
  color: #dc3545;
}

.valid-feedback {
  color: #28a745;
}

.is-invalid ~ .invalid-feedback {
  display: block;
}

.is-valid ~ .valid-feedback {
  display: block;
}

.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  overflow: auto;
}
.modal.show {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.modal-dialog {
  position: relative;
  width: auto;
  max-width: 500px;
  background-color: #ffffff;
  border-radius: 1rem;
  -webkit-box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.175);
          box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.175);
  overflow: hidden;
}

.modal-content {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
}

.modal-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 1.5rem;
  border-bottom: 1px solid #dddddd;
}

.modal-title {
  margin: 0;
  font-size: 24px;
  font-weight: 700;
  color: #333333;
}

.modal-close {
  padding: 0;
  background: none;
  border: none;
  font-size: 2rem;
  cursor: pointer;
  color: #666666;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.modal-close:hover {
  color: #333333;
}

.modal-body {
  position: relative;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  padding: 1.5rem;
}

.modal-footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  gap: 1rem;
  padding: 1.5rem;
  border-top: 1px solid #dddddd;
}

.dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-toggle {
  display: inline-block;
  padding: 1rem 1.5rem;
  background-color: #ffde59;
  color: #ffffff;
  border: none;
  border-radius: 0.5rem;
  cursor: pointer;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.dropdown-toggle::after {
  content: "";
  display: inline-block;
  margin-left: 0.5rem;
  border-top: 0.3em solid;
  border-right: 0.3em solid transparent;
  border-left: 0.3em solid transparent;
}
.dropdown-toggle:hover {
  background-color: rgb(255, 211.8614457831, 38);
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 1000;
  min-width: 160px;
  padding: 0;
  margin: 0.5rem 0 0 0;
  background-color: #ffffff;
  border: 1px solid #dddddd;
  border-radius: 0.5rem;
  -webkit-box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
          box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
  list-style: none;
}
.dropdown-menu.show {
  display: block;
}

.dropdown-item {
  display: block;
  padding: 1rem 1.5rem;
  color: #333333;
  text-decoration: none;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}
.dropdown-item:hover {
  background-color: #f5f5f5;
  color: #333333;
}
.dropdown-item.active {
  background-color: #ffde59;
  color: #ffffff;
}
.dropdown-item.disabled {
  opacity: 0.65;
  cursor: not-allowed;
}

.dropdown-divider {
  height: 0;
  margin: 0.5rem 0;
  border-top: 1px solid #dddddd;
}

.tooltip {
  position: relative;
  display: inline-block;
}

.tooltip-text {
  visibility: hidden;
  position: absolute;
  bottom: 125%;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: 1070;
  padding: 0.5rem 1rem;
  background-color: #333333;
  color: #ffffff;
  text-align: center;
  border-radius: 0.5rem;
  white-space: nowrap;
  font-size: 16px;
  opacity: 0;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
.tooltip-text::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  border: 5px solid transparent;
  border-top-color: #333333;
}

.tooltip:hover .tooltip-text {
  visibility: visible;
  opacity: 1;
}

.nav-tabs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0;
  border-bottom: 2px solid #f5f5f5;
  gap: 0;
}

.nav-item:first-child .nav-link {
  border-radius: 0.5rem 0 0 0;
}
.nav-item:last-child .nav-link {
  border-radius: 0 0.5rem 0 0;
}

.nav-link {
  display: block;
  padding: 1.5rem;
  color: #333333;
  text-decoration: none;
  background-color: transparent;
  border: 1px solid transparent;
  border-bottom: 2px solid transparent;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}
.nav-link:hover {
  border-bottom-color: #ffde59;
}
.nav-link.active {
  border-bottom-color: #ffde59;
  color: #ffde59;
  font-weight: 600;
}
.nav-link:disabled {
  opacity: 0.65;
  cursor: not-allowed;
}

.progress {
  display: block;
  width: 100%;
  height: 1.5rem;
  background-color: #f5f5f5;
  border-radius: 0.5rem;
  overflow: hidden;
  margin-bottom: 1.5rem;
}

.progress-bar {
  height: 100%;
  background-color: #ffde59;
  background-size: 1rem 1rem;
  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  -webkit-transition: width 0.3s ease;
  transition: width 0.3s ease;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: #ffffff;
  font-size: 16px;
  font-weight: 700;
}
.progress-bar.progress-bar-success {
  background-color: #28a745;
}
.progress-bar.progress-bar-warning {
  background-color: #ffc107;
  color: #333333;
}
.progress-bar.progress-bar-danger {
  background-color: #dc3545;
}
.progress-bar.progress-bar-info {
  background-color: #17a2b8;
}

.navbar {
  padding: 0;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.navbar-menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 2.8rem;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.navbar-item {
  position: relative;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.navbar-item:hover .navbar-submenu {
  display: block;
}

.navbar-link {
  display: block;
  padding: 1.2rem 1rem;
  color: white;
  text-decoration: none;
  font-weight: 500;
  font-size: 18px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  border-bottom: 2px solid transparent;
  color: hsl(0, 0%, calc(100% - var(--nav-color-progress, 0) * 40%));
}
.navbar-link:hover {
  color: #ffde59;
  border-bottom-color: #ffde59;
  text-decoration: none;
}
.navbar-link.active, .navbar-item.active .navbar-link {
  color: #ffde59;
  border-bottom: 2px solid #ffde59;
}

.navbar-submenu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: rgba(255, 255, 255, 0.98);
  border: 1px solid #e0e0e0;
  list-style: none;
  margin: 1rem 0 0 0;
  padding: 0.8rem 0;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  min-width: 200px;
  z-index: 100;
  -webkit-box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
          box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  border-radius: 6px;
  backdrop-filter: blur(8px);
}

.navbar-subitem:hover .navbar-sublink {
  color: #ffde59;
  background-color: #f9f9f9;
}

.navbar-sublink {
  display: block;
  padding: 0.8rem 1.5rem;
  color: #333;
  text-decoration: none;
  font-size: 14px;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.navbar-sublink:hover {
  background-color: #f9f9f9;
}
.navbar-sublink.active {
  color: #ffde59;
  font-weight: 500;
}

.navbar-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  padding: 0.8rem;
  z-index: 20;
}
.navbar-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background-color: white;
  margin: 5px 0;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
@media (max-width: 1024px) {
  .navbar-toggle {
    display: block;
  }
}

@media (max-width: 1024px) {
  .navbar-menu {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 0;
    display: none;
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    background-color: rgba(255, 255, 255, 0.98);
    border-top: 1px solid #e0e0e0;
    padding: 1.5rem 0;
    z-index: 99;
  }
  .navbar-menu.active {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .navbar-link {
    color: #333333;
    padding: 1.5rem 2rem;
    border-bottom: none;
  }
  .navbar-link:hover {
    background-color: #f5f5f5;
  }
  .navbar-submenu {
    position: static;
    border: none;
    background-color: transparent;
    margin-left: 2rem;
    padding: 0.8rem 0;
    -webkit-box-shadow: none;
            box-shadow: none;
  }
}
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  background: rgba(0, 0, 0, 0.25);
  -webkit-transition: background 0.6s ease, backdrop-filter 0.6s ease, -webkit-box-shadow 0.6s ease;
  transition: background 0.6s ease, backdrop-filter 0.6s ease, -webkit-box-shadow 0.6s ease;
  transition: background 0.6s ease, box-shadow 0.6s ease, backdrop-filter 0.6s ease;
  transition: background 0.6s ease, box-shadow 0.6s ease, backdrop-filter 0.6s ease, -webkit-box-shadow 0.6s ease;
  padding: 0;
  --scroll-yellow: 0;
}
.site-header .logo-img {
  -webkit-filter: brightness(1.1) drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.3));
          filter: brightness(1.1) drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.3));
  -webkit-transition: -webkit-filter 0.6s ease;
  transition: -webkit-filter 0.6s ease;
  transition: filter 0.6s ease;
  transition: filter 0.6s ease, -webkit-filter 0.6s ease;
}
.site-header .navbar-link {
  color: white !important;
  font-weight: 500;
}
.site-header .navbar-link:hover {
  color: #ffde59 !important;
}
.site-header .navbar-item.active .navbar-link {
  color: #ffde59 !important;
  border-bottom-color: #ffde59 !important;
}
.site-header .navbar-toggle span {
  background-color: white;
  -webkit-transition: background-color 0.6s ease;
  transition: background-color 0.6s ease;
}
.site-header.scrolled {
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.01)), to(rgba(255, 255, 255, 0.35)));
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.01), rgba(255, 255, 255, 0.35));
  -webkit-box-shadow: 0 2px 16px rgba(0, 0, 0, 0.1);
          box-shadow: 0 2px 16px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(7px);
}
.site-header.scrolled .logo-img {
  -webkit-filter: drop-shadow(1px 1px 2px rgba(0, 0, 0, 0.08));
          filter: drop-shadow(1px 1px 2px rgba(0, 0, 0, 0.08));
}
.site-header.scrolled .navbar-link {
  color: #000 !important;
}
.site-header.scrolled .navbar-link:hover {
  color: #ffde59 !important;
}
.site-header.scrolled .navbar-item.active .navbar-link {
  color: #ffde59 !important;
}
.site-header.scrolled .navbar-toggle span {
  background-color: #333333;
}

.site-header .container {
  padding: 16px 20px;
}

.header-content {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  max-width: 1400px;
  margin: 0 auto;
  gap: 2rem;
  padding-left: 120px;
}

.logo {
  position: absolute;
  left: 20px;
  top: 50%;
  -webkit-transform: translateY(-50%) scale(1);
          transform: translateY(-50%) scale(1);
  width: 90px;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-decoration: none;
  -webkit-transition: none;
  transition: none;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  z-index: 10;
  -webkit-transform-origin: left center;
          transform-origin: left center;
}
.logo:hover {
  opacity: 0.9;
}
@media (max-width: 768px) {
  .logo {
    width: 70px;
    left: 15px;
  }
}

.logo-img {
  width: 100%;
  height: auto;
  display: block;
  -webkit-transition: -webkit-filter 0.4s ease;
  transition: -webkit-filter 0.4s ease;
  transition: filter 0.4s ease;
  transition: filter 0.4s ease, -webkit-filter 0.4s ease;
}

/**
 * Task 16: COMPLETE CSS-STYLING für Redaxo Module
 * 
 * ✅ ENHANCED VERSION mit:
 * - Vollständigen Gradient-Hintergründen
 * - SVG Blob-Dekoration & Animationen
 * - Enhanced Shadows & Depth
 * - Smooth Hover-States
 * - Bessere Visual Hierarchy
 * - Responsive für alle Breakpoints (375px - 1920px)
 * 
 * Design-Palette:
 * - dark-yellow: #ffde59 (Primär)
 * - light-yellow: #fff3c2 (Akzent)
 * - SVG: circle-background.svg
 */
@-webkit-keyframes float {
  0%, 100% {
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
  }
  50% {
    -webkit-transform: translateY(20px);
            transform: translateY(20px);
  }
}
@keyframes float {
  0%, 100% {
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
  }
  50% {
    -webkit-transform: translateY(20px);
            transform: translateY(20px);
  }
}
@-webkit-keyframes float-slow {
  0%, 100% {
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
  }
  50% {
    -webkit-transform: translateY(30px);
            transform: translateY(30px);
  }
}
@keyframes float-slow {
  0%, 100% {
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
  }
  50% {
    -webkit-transform: translateY(30px);
            transform: translateY(30px);
  }
}
@-webkit-keyframes pulse-scale {
  0%, 100% {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 0.5;
  }
  50% {
    -webkit-transform: scale(1.05);
            transform: scale(1.05);
    opacity: 0.7;
  }
}
@keyframes pulse-scale {
  0%, 100% {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 0.5;
  }
  50% {
    -webkit-transform: scale(1.05);
            transform: scale(1.05);
    opacity: 0.7;
  }
}
@-webkit-keyframes rotate-blob {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
@keyframes rotate-blob {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
@-webkit-keyframes gradient-shift {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
@keyframes gradient-shift {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
.module-wrapper {
  position: relative;
  width: 100%;
  margin-bottom: 2rem;
  overflow: visible; /* WICHTIG: Blobs können rausquellen! */
  /* ========== CSS CUSTOM PROPERTIES FÜR BLOB-POSITIONEN ========== */
  --blob-top: -80px;
  --blob-right: -100px;
  --blob-left: auto;
  --blob-bottom: auto;
}
@media (max-width: 767px) {
  .module-wrapper {
    margin-bottom: 1.5rem;
  }
}
.module-wrapper {
  /* ========== MODUL-LEVEL BLOB DEKORATIONEN mit ::before ========== */
}
.module-wrapper::before {
  content: "";
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  z-index: -1;
  pointer-events: none;
  -webkit-animation: float 8s ease-in-out infinite;
          animation: float 8s ease-in-out infinite;
  /* Blob-Positionierung via CSS Custom Properties */
  top: var(--blob-top);
  right: var(--blob-right);
  left: var(--blob-left);
  bottom: var(--blob-bottom);
  /* Default Modul-Blob (Light Primary) */
  background: radial-gradient(circle at 40% 40%, rgba(255, 243, 194, 0.35), transparent 60%);
  -webkit-box-shadow: 0 0 60px rgba(255, 243, 194, 0.15);
          box-shadow: 0 0 60px rgba(255, 243, 194, 0.15);
}
.module-wrapper {
  /* VARIANT 1: Ungerade Module (Light Yellow) */
}
.module-wrapper:nth-child(odd)::before {
  background: radial-gradient(circle at 40% 40%, rgba(255, 243, 194, 0.35), transparent 60%);
  -webkit-animation-duration: 10s;
          animation-duration: 10s;
  top: -80px;
  right: -100px;
  -webkit-box-shadow: 0 0 60px rgba(255, 243, 194, 0.15);
          box-shadow: 0 0 60px rgba(255, 243, 194, 0.15);
}
.module-wrapper {
  /* VARIANT 2: Gerade Module (Dark Yellow, links, reverse) */
}
.module-wrapper:nth-child(even)::before {
  background: radial-gradient(circle at 30% 40%, rgba(255, 222, 89, 0.35), transparent 60%);
  animation-direction: reverse;
  -webkit-animation-duration: 12s;
          animation-duration: 12s;
  right: auto;
  left: -80px;
  top: 10%;
  -webkit-box-shadow: 0 0 60px rgba(255, 222, 89, 0.15);
          box-shadow: 0 0 60px rgba(255, 222, 89, 0.15);
}
.module-wrapper.light-yellow-bg {
  background: linear-gradient(135deg, #fff3c2 0%, #fef9e8 50%, #fff3c2 100%);
  background-size: 200% 200%;
  padding: 3rem 1.5rem;
  border-radius: 12px;
  -webkit-box-shadow: 0 8px 24px rgba(255, 222, 89, 0.15);
          box-shadow: 0 8px 24px rgba(255, 222, 89, 0.15);
  overflow: visible; /* Blobs nicht abschneiden! */
}
@media (max-width: 1023px) {
  .module-wrapper.light-yellow-bg {
    padding: 2rem 1rem;
  }
}
@media (max-width: 767px) {
  .module-wrapper.light-yellow-bg {
    padding: 1.5rem 1rem;
  }
}
.module-wrapper.with-blobs {
  position: relative;
  overflow: visible; /* Blobs sichtbar bleiben! */
}
.module-wrapper {
  /* VARIANT 1: Gefüllter Blob (Light Primary) */
}
.module-wrapper.blob-variant-1::before {
  background: radial-gradient(circle at 40% 40%, rgba(255, 243, 194, 0.35), transparent 60%);
  -webkit-animation-duration: 8s;
          animation-duration: 8s;
  -webkit-animation-direction: normal;
          animation-direction: normal;
  -webkit-box-shadow: 0 0 60px rgba(255, 243, 194, 0.15);
          box-shadow: 0 0 60px rgba(255, 243, 194, 0.15);
}
.module-wrapper {
  /* VARIANT 2: Gefüllter Blob (Dark Yellow) */
}
.module-wrapper.blob-variant-2::before {
  background: radial-gradient(circle at 35% 35%, rgba(255, 222, 89, 0.35), transparent 60%);
  -webkit-animation-duration: 10s;
          animation-duration: 10s;
  animation-direction: reverse;
  -webkit-box-shadow: 0 0 60px rgba(255, 222, 89, 0.15);
          box-shadow: 0 0 60px rgba(255, 222, 89, 0.15);
}
.module-wrapper {
  /* VARIANT 3: Nur KONTUREN - Zwei ineinander verschlungene Kreise (Dark Yellow) */
}
.module-wrapper.blob-variant-3::before {
  background: none;
  border: 3px solid rgba(255, 222, 89, 0.4);
  -webkit-box-shadow: inset 0 0 0 8px rgba(255, 243, 194, 0.25), 0 0 40px rgba(255, 222, 89, 0.1);
          box-shadow: inset 0 0 0 8px rgba(255, 243, 194, 0.25), 0 0 40px rgba(255, 222, 89, 0.1);
  -webkit-animation-duration: 12s;
          animation-duration: 12s;
  -webkit-animation-direction: normal;
          animation-direction: normal;
}
.module-wrapper {
  /* VARIANT 4: Nur KONTUREN - Ring-Design (Light Primary) */
}
.module-wrapper.blob-variant-4::before {
  background: none;
  border: 2px solid rgba(255, 243, 194, 0.4);
  -webkit-box-shadow: inset 0 0 0 6px rgba(255, 222, 89, 0.3), 0 0 35px rgba(255, 243, 194, 0.12);
          box-shadow: inset 0 0 0 6px rgba(255, 222, 89, 0.3), 0 0 35px rgba(255, 243, 194, 0.12);
  -webkit-animation-duration: 11s;
          animation-duration: 11s;
  animation-direction: reverse;
}
.module-wrapper {
  /* VARIANT 5: Gefüllter Mini-Blob (Light Primary, kleinere Größe) */
}
.module-wrapper.blob-variant-5::before {
  width: 250px;
  height: 250px;
  background: radial-gradient(circle at 45% 45%, rgba(255, 243, 194, 0.32), transparent 65%);
  -webkit-animation-duration: 9s;
          animation-duration: 9s;
  -webkit-animation-direction: normal;
          animation-direction: normal;
  -webkit-box-shadow: 0 0 50px rgba(255, 243, 194, 0.12);
          box-shadow: 0 0 50px rgba(255, 243, 194, 0.12);
}
.module-wrapper {
  /* VARIANT 6: Gestrichelter Ring (Dark Yellow) */
}
.module-wrapper.blob-variant-6::before {
  background: none;
  border: 2px dashed rgba(255, 222, 89, 0.35);
  -webkit-box-shadow: 0 0 35px rgba(255, 222, 89, 0.08);
          box-shadow: 0 0 35px rgba(255, 222, 89, 0.08);
  width: 280px;
  height: 280px;
  -webkit-animation-duration: 13s;
          animation-duration: 13s;
  animation-direction: reverse;
}
.module-wrapper {
  /* Position 1: Oben-rechts (DEFAULT) */
}
.module-wrapper.pos-top-right {
  --blob-top: -80px;
  --blob-right: -100px;
  --blob-left: auto;
  --blob-bottom: auto;
}
.module-wrapper {
  /* Position 2: Oben-links */
}
.module-wrapper.pos-top-left {
  --blob-top: -80px;
  --blob-right: auto;
  --blob-left: -120px;
  --blob-bottom: auto;
}
.module-wrapper {
  /* Position 3: Unten-rechts */
}
.module-wrapper.pos-bottom-right {
  --blob-top: auto;
  --blob-right: -100px;
  --blob-left: auto;
  --blob-bottom: -80px;
}
.module-wrapper {
  /* Position 4: Unten-links */
}
.module-wrapper.pos-bottom-left {
  --blob-top: auto;
  --blob-right: auto;
  --blob-left: -120px;
  --blob-bottom: -80px;
}
.module-wrapper {
  /* Position 5: Mitte-rechts */
}
.module-wrapper.pos-mid-right {
  --blob-top: 50%;
  --blob-right: -100px;
  --blob-left: auto;
  --blob-bottom: auto;
}
.module-wrapper {
  /* Position 6: Mitte-links */
}
.module-wrapper.pos-mid-left {
  --blob-top: 50%;
  --blob-right: auto;
  --blob-left: -120px;
  --blob-bottom: auto;
}

/* ========== MODULE-SPEZIFISCHE BLOB-FARBEN ========== */
/* Headlines/Hero (dunkel-gelb oben-rechts) */
.module-headline::before,
.module-hero-banner::before {
  background: radial-gradient(circle at 30% 30%, rgba(255, 222, 89, 0.3), transparent 60%);
  -webkit-box-shadow: 0 0 70px rgba(255, 222, 89, 0.18);
          box-shadow: 0 0 70px rgba(255, 222, 89, 0.18);
}

/* Event/Cards (orange unten-links) */
.module-event::before,
.module-event-card::before,
.module-events::before {
  background: radial-gradient(circle at 35% 35%, rgba(255, 140, 66, 0.28), transparent 60%);
  top: auto;
  right: auto;
  bottom: -70px;
  left: -70px;
  -webkit-box-shadow: 0 0 60px rgba(255, 140, 66, 0.16);
          box-shadow: 0 0 60px rgba(255, 140, 66, 0.16);
}

/* Text-Module (hellgelb oben-rechts) */
.module-text::before,
.module-content::before {
  background: radial-gradient(circle at 25% 25%, rgba(255, 243, 194, 0.22), transparent 60%);
  width: 250px;
  height: 250px;
  top: -100px;
  right: -100px;
  -webkit-animation: float-slow 10s ease-in-out infinite;
          animation: float-slow 10s ease-in-out infinite;
}

/* Bilder/Gallery (warm-orange rechts unten) */
.module-gallery::before,
.module-images::before,
.module-image::before {
  background: radial-gradient(circle at 40% 40%, rgba(255, 163, 102, 0.26), transparent 60%);
  width: 200px;
  height: 200px;
  top: auto;
  right: -60px;
  bottom: -60px;
  left: auto;
  -webkit-box-shadow: 0 0 50px rgba(255, 163, 102, 0.07);
          box-shadow: 0 0 50px rgba(255, 163, 102, 0.07);
  animation: float 8s ease-in-out infinite reverse;
}

.module-headline,
.module-hero-banner {
  position: relative;
  width: 100%;
  min-height: 250px;
  background: linear-gradient(135deg, #ffde59 0%, #f4c21d 50%, #f5cf68 100%);
  background-size: 200% 200%;
  color: #000;
  padding: 4rem 2rem;
  margin-bottom: 2rem;
  text-align: center;
  overflow: hidden;
  -webkit-box-shadow: 0 8px 32px rgba(255, 222, 89, 0.3);
          box-shadow: 0 8px 32px rgba(255, 222, 89, 0.3);
  border-radius: 12px;
}
@media (max-width: 1023px) {
  .module-headline,
  .module-hero-banner {
    padding: 3rem 1.5rem;
    min-height: 200px;
  }
}
@media (max-width: 767px) {
  .module-headline,
  .module-hero-banner {
    padding: 2rem 1rem;
    min-height: 150px;
  }
}
.module-headline h1, .module-headline h2, .module-headline h3,
.module-hero-banner h1,
.module-hero-banner h2,
.module-hero-banner h3 {
  font-family: Calibri, "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  font-size: 36px;
  text-transform: uppercase;
  margin: 0;
  color: #000;
  font-weight: 700;
  position: relative;
  z-index: 1;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}
@media (max-width: 767px) {
  .module-headline h1, .module-headline h2, .module-headline h3,
  .module-hero-banner h1,
  .module-hero-banner h2,
  .module-hero-banner h3 {
    font-size: 1.8rem;
  }
}
.module-headline .hero-content,
.module-hero-banner .hero-content {
  position: relative;
  z-index: 1;
  max-width: 1000px;
  margin: 0 auto;
}
.module-headline .hero-content p,
.module-hero-banner .hero-content p {
  font-size: 20px;
  line-height: 1.7;
  margin-top: 1.5rem;
  color: rgba(0, 0, 0, 0.9);
}
@media (max-width: 767px) {
  .module-headline .hero-content p,
  .module-hero-banner .hero-content p {
    font-size: 18px;
    margin-top: 1rem;
  }
}
.module-headline:hover,
.module-hero-banner:hover {
  -webkit-box-shadow: 0 12px 40px rgba(255, 222, 89, 0.4);
          box-shadow: 0 12px 40px rgba(255, 222, 89, 0.4);
}

.module-event,
.module-event-card,
.module-events {
  display: grid;
  gap: 1.5rem;
  margin-bottom: 2rem;
  width: 100%;
}
@media (max-width: 1023px) {
  .module-event,
  .module-event-card,
  .module-events {
    gap: 1rem;
  }
}
@media (max-width: 767px) {
  .module-event,
  .module-event-card,
  .module-events {
    gap: 0.75rem;
  }
}

.event-card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 1.5rem;
  border-radius: 12px;
  background: linear-gradient(135deg, #fff3c2 0%, #fef9e8 50%, #fffbf5 100%);
  border-left: 5px solid #ffde59;
  -webkit-transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
  overflow: hidden;
  -webkit-box-shadow: 0 4px 12px rgba(255, 222, 89, 0.15);
          box-shadow: 0 4px 12px rgba(255, 222, 89, 0.15);
}
@media (max-width: 767px) {
  .event-card {
    padding: 1rem;
  }
}
.event-card:hover {
  -webkit-box-shadow: 0 12px 28px rgba(255, 222, 89, 0.3);
          box-shadow: 0 12px 28px rgba(255, 222, 89, 0.3);
  -webkit-transform: translateY(-6px);
          transform: translateY(-6px);
  background: linear-gradient(135deg, #fff9e6 0%, #fffbf0 50%, #fffef8 100%);
}
.event-card:hover .event-title {
  color: rgb(255, 216.9307228916, 63.5);
}
.event-card .event-icon {
  font-size: 2.5rem;
  margin-bottom: 0.75rem;
  position: relative;
  z-index: 1;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
.event-card:hover .event-icon {
  -webkit-transform: scale(1.1) rotate(5deg);
          transform: scale(1.1) rotate(5deg);
}
.event-card .event-date {
  font-weight: 700;
  color: #ffde59;
  font-size: 1rem;
  margin-bottom: 0.75rem;
  position: relative;
  z-index: 1;
}
.event-card .event-title {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: #000;
  position: relative;
  z-index: 1;
  line-height: 1.4;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}
.event-card .event-description,
.event-card .event-location {
  font-size: 1rem;
  color: #333;
  margin-top: 0.5rem;
  position: relative;
  z-index: 1;
  line-height: 1.5;
}
.event-card .event-meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
  font-size: 0.95rem;
  color: #666;
  position: relative;
  z-index: 1;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.event-card .event-meta > span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.25rem;
}
.event-card.white-bg {
  background: linear-gradient(135deg, #ffffff 0%, #fffbf5 100%);
  border-color: #ddd;
}

.module-news,
.module-news-teaser,
.module-news-grid {
  display: grid;
  gap: 1.5rem;
  margin-bottom: 2rem;
  width: 100%;
}
@media (max-width: 1023px) {
  .module-news,
  .module-news-teaser,
  .module-news-grid {
    gap: 1rem;
  }
}
@media (max-width: 767px) {
  .module-news,
  .module-news-teaser,
  .module-news-grid {
    gap: 0.75rem;
  }
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-bottom: 2rem;
  width: 100%;
}
@media (max-width: 1439px) {
  .news-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
}
@media (max-width: 1023px) {
  .news-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}
@media (max-width: 767px) {
  .news-grid {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }
}

.news-card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  border-radius: 12px;
  overflow: hidden;
  -webkit-transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  -webkit-box-shadow: 0 4px 12px rgba(255, 222, 89, 0.1);
          box-shadow: 0 4px 12px rgba(255, 222, 89, 0.1);
  position: relative;
  background: #fff;
  background-clip: padding-box;
}
@media (max-width: 767px) {
  .news-card {
    border-radius: 8px;
  }
}
.news-card.featured, .news-card:first-child {
  grid-column: span 2;
}
@media (max-width: 1439px) {
  .news-card.featured, .news-card:first-child {
    grid-column: span 1;
  }
}
@media (max-width: 1023px) {
  .news-card.featured, .news-card:first-child {
    grid-column: span 1;
  }
}
.news-card.featured .news-image, .news-card:first-child .news-image {
  height: 320px;
}
@media (max-width: 1023px) {
  .news-card.featured .news-image, .news-card:first-child .news-image {
    height: 220px;
  }
}
@media (max-width: 767px) {
  .news-card.featured .news-image, .news-card:first-child .news-image {
    height: 160px;
  }
}
.news-card.featured .featured-badge, .news-card:first-child .featured-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  z-index: 3;
}
.news-card .news-image {
  width: 100%;
  height: 160px;
  background: linear-gradient(135deg, #f0f0f0 0%, #e8e8e8 100%);
  background-size: cover;
  background-position: center;
  overflow: hidden;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  position: relative;
}
@media (max-width: 767px) {
  .news-card .news-image {
    height: 130px;
  }
}
.news-card .news-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: -webkit-transform 0.4s ease;
  transition: -webkit-transform 0.4s ease;
  transition: transform 0.4s ease;
  transition: transform 0.4s ease, -webkit-transform 0.4s ease;
}
.news-card .news-image::overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 222, 89, 0);
  -webkit-transition: background 0.3s ease;
  transition: background 0.3s ease;
}
.news-card:hover .news-image img {
  -webkit-transform: scale(1.08);
          transform: scale(1.08);
}
.news-card .news-content {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  padding: 1.25rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  background: linear-gradient(135deg, #fff3c2 0%, #fef9e8 50%, #fffbf5 100%);
  border-left: 4px solid #ffde59;
  position: relative;
  z-index: 2;
}
@media (max-width: 1023px) {
  .news-card .news-content {
    padding: 1rem;
  }
}
@media (max-width: 767px) {
  .news-card .news-content {
    padding: 0.85rem;
  }
}
.news-card .news-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: #000;
  margin-bottom: 0.75rem;
  line-height: 1.3;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}
.news-card .news-description {
  font-size: 1rem;
  color: #333;
  margin-bottom: 0.75rem;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.news-card .news-meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 0.95rem;
  color: #666;
  margin-top: auto;
  padding-top: 0.75rem;
  border-top: 1px solid rgba(255, 222, 89, 0.2);
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 0.5rem;
}
.news-card .news-meta .news-author {
  font-weight: 600;
}
.news-card .news-meta .news-date {
  color: #ffde59;
  font-weight: 500;
}
.news-card .read-more {
  display: inline-block;
  margin-top: 0.75rem;
  color: #ffde59;
  text-decoration: none;
  font-weight: 700;
  font-size: 1rem;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.news-card .read-more::after {
  content: " →";
  display: inline-block;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
.news-card .read-more:hover {
  color: rgb(255, 211.8614457831, 38);
}
.news-card .read-more:hover::after {
  -webkit-transform: translateX(4px);
          transform: translateX(4px);
}
.news-card:hover {
  -webkit-box-shadow: 0 12px 32px rgba(255, 222, 89, 0.25);
          box-shadow: 0 12px 32px rgba(255, 222, 89, 0.25);
  -webkit-transform: translateY(-8px);
          transform: translateY(-8px);
}
.news-card:hover .news-title {
  color: rgb(255, 216.9307228916, 63.5);
}
.news-card:hover::after {
  -webkit-transform: rotate(15deg) scale(1.15);
          transform: rotate(15deg) scale(1.15);
}

.module-text,
.module-content,
.module-html,
.module-description {
  margin-bottom: 2rem;
  position: relative;
}
@media (max-width: 767px) {
  .module-text,
  .module-content,
  .module-html,
  .module-description {
    margin-bottom: 1.5rem;
  }
}
.module-text.with-background,
.module-content.with-background,
.module-html.with-background,
.module-description.with-background {
  background: linear-gradient(135deg, #fff3c2 0%, #fef9e8 100%);
  padding: 2rem;
  border-radius: 8px;
  -webkit-box-shadow: 0 2px 8px rgba(255, 222, 89, 0.1);
          box-shadow: 0 2px 8px rgba(255, 222, 89, 0.1);
  border-left: 4px solid #ffde59;
}
@media (max-width: 767px) {
  .module-text.with-background,
  .module-content.with-background,
  .module-html.with-background,
  .module-description.with-background {
    padding: 1.5rem;
  }
}
.module-text h2, .module-text h3, .module-text h4, .module-text h5,
.module-content h2,
.module-content h3,
.module-content h4,
.module-content h5,
.module-html h2,
.module-html h3,
.module-html h4,
.module-html h5,
.module-description h2,
.module-description h3,
.module-description h4,
.module-description h5 {
  font-family: Calibri, "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  text-transform: uppercase;
  color: #000;
  margin: 2rem 0 1rem 0;
  border-bottom: 3px solid #ffde59;
  padding-bottom: 0.75rem;
  position: relative;
}
@media (max-width: 767px) {
  .module-text h2, .module-text h3, .module-text h4, .module-text h5,
  .module-content h2,
  .module-content h3,
  .module-content h4,
  .module-content h5,
  .module-html h2,
  .module-html h3,
  .module-html h4,
  .module-html h5,
  .module-description h2,
  .module-description h3,
  .module-description h4,
  .module-description h5 {
    font-size: 1rem;
    margin: 1.5rem 0 0.75rem 0;
  }
}
.module-text h2:first-child, .module-text h3:first-child, .module-text h4:first-child, .module-text h5:first-child,
.module-content h2:first-child,
.module-content h3:first-child,
.module-content h4:first-child,
.module-content h5:first-child,
.module-html h2:first-child,
.module-html h3:first-child,
.module-html h4:first-child,
.module-html h5:first-child,
.module-description h2:first-child,
.module-description h3:first-child,
.module-description h4:first-child,
.module-description h5:first-child {
  margin-top: 0;
}
.module-text h1,
.module-content h1,
.module-html h1,
.module-description h1 {
  font-size: 1.5rem;
  border-bottom: 3px solid #ffde59;
  padding-bottom: 0.75rem;
  margin-bottom: 1.5rem;
}
.module-text p,
.module-content p,
.module-html p,
.module-description p {
  font-size: 18px;
  line-height: 1.8;
  color: #333;
  margin-bottom: 1.25rem;
}
@media (max-width: 767px) {
  .module-text p,
  .module-content p,
  .module-html p,
  .module-description p {
    margin-bottom: 1rem;
  }
}
.module-text p:last-child,
.module-content p:last-child,
.module-html p:last-child,
.module-description p:last-child {
  margin-bottom: 0;
}
.module-text strong, .module-text b,
.module-content strong,
.module-content b,
.module-html strong,
.module-html b,
.module-description strong,
.module-description b {
  font-weight: 700;
  color: #000;
}
.module-text em, .module-text i,
.module-content em,
.module-content i,
.module-html em,
.module-html i,
.module-description em,
.module-description i {
  font-style: italic;
}
.module-text ul, .module-text ol,
.module-content ul,
.module-content ol,
.module-html ul,
.module-html ol,
.module-description ul,
.module-description ol {
  margin-left: 2rem;
  margin-bottom: 1.25rem;
}
@media (max-width: 767px) {
  .module-text ul, .module-text ol,
  .module-content ul,
  .module-content ol,
  .module-html ul,
  .module-html ol,
  .module-description ul,
  .module-description ol {
    margin-left: 1.5rem;
    margin-bottom: 1rem;
  }
}
.module-text ul li, .module-text ol li,
.module-content ul li,
.module-content ol li,
.module-html ul li,
.module-html ol li,
.module-description ul li,
.module-description ol li {
  margin-bottom: 0.75rem;
  font-size: 18px;
  line-height: 1.7;
  color: #333;
}
@media (max-width: 767px) {
  .module-text ul li, .module-text ol li,
  .module-content ul li,
  .module-content ol li,
  .module-html ul li,
  .module-html ol li,
  .module-description ul li,
  .module-description ol li {
    margin-bottom: 0.5rem;
  }
}
.module-text ul ul, .module-text ul ol, .module-text ol ul, .module-text ol ol,
.module-content ul ul,
.module-content ul ol,
.module-content ol ul,
.module-content ol ol,
.module-html ul ul,
.module-html ul ol,
.module-html ol ul,
.module-html ol ol,
.module-description ul ul,
.module-description ul ol,
.module-description ol ul,
.module-description ol ol {
  margin-top: 0.75rem;
  margin-bottom: 0;
}
.module-text dl,
.module-content dl,
.module-html dl,
.module-description dl {
  margin-bottom: 1.25rem;
}
.module-text dl dt,
.module-content dl dt,
.module-html dl dt,
.module-description dl dt {
  font-weight: 700;
  color: #000;
  margin-top: 1rem;
}
.module-text dl dt:first-child,
.module-content dl dt:first-child,
.module-html dl dt:first-child,
.module-description dl dt:first-child {
  margin-top: 0;
}
.module-text dl dd,
.module-content dl dd,
.module-html dl dd,
.module-description dl dd {
  margin-left: 1.5rem;
  color: #333;
  margin-bottom: 0.75rem;
}
.module-text a,
.module-content a,
.module-html a,
.module-description a {
  color: #ffde59;
  text-decoration: underline;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  font-weight: 500;
}
.module-text a:hover,
.module-content a:hover,
.module-html a:hover,
.module-description a:hover {
  color: rgb(255, 206.7921686747, 12.5);
  text-decoration-thickness: 2px;
}
.module-text blockquote,
.module-content blockquote,
.module-html blockquote,
.module-description blockquote {
  border-left: 4px solid #ffde59;
  padding-left: 1.5rem;
  margin: 1.5rem 0;
  font-style: italic;
  color: #555;
  background: rgba(255, 243, 194, 0.1);
  padding: 1rem 1rem 1rem 1.5rem;
  border-radius: 4px;
}
.module-text blockquote p,
.module-content blockquote p,
.module-html blockquote p,
.module-description blockquote p {
  margin-bottom: 0.5rem;
}
.module-text blockquote p:last-child,
.module-content blockquote p:last-child,
.module-html blockquote p:last-child,
.module-description blockquote p:last-child {
  margin-bottom: 0;
}
.module-text blockquote cite,
.module-content blockquote cite,
.module-html blockquote cite,
.module-description blockquote cite {
  display: block;
  margin-top: 0.75rem;
  font-style: normal;
  font-weight: 600;
  color: #333;
}
.module-text blockquote cite::before,
.module-content blockquote cite::before,
.module-html blockquote cite::before,
.module-description blockquote cite::before {
  content: "— ";
}
.module-text code,
.module-content code,
.module-html code,
.module-description code {
  background-color: #f5f5f5;
  border: 1px solid #ddd;
  border-radius: 3px;
  padding: 0.25rem 0.5rem;
  font-family: "Courier New", Courier, monospace;
  font-size: 0.9em;
  color: #d63384;
}
.module-text pre,
.module-content pre,
.module-html pre,
.module-description pre {
  background-color: #f5f5f5;
  border: 1px solid #ddd;
  border-radius: 4px;
  padding: 1rem;
  overflow-x: auto;
  margin-bottom: 1.25rem;
}
.module-text pre code,
.module-content pre code,
.module-html pre code,
.module-description pre code {
  background-color: transparent;
  border: none;
  padding: 0;
  color: #333;
}
.module-text table,
.module-content table,
.module-html table,
.module-description table {
  width: 100%;
  margin-bottom: 1.25rem;
  border-collapse: collapse;
}
.module-text table th, .module-text table td,
.module-content table th,
.module-content table td,
.module-html table th,
.module-html table td,
.module-description table th,
.module-description table td {
  padding: 0.75rem;
  text-align: left;
  border: 1px solid #ddd;
}
.module-text table th,
.module-content table th,
.module-html table th,
.module-description table th {
  background-color: #fff3c2;
  border-color: #ffde59;
  font-weight: 700;
  color: #000;
}
.module-text table tr:nth-child(even),
.module-content table tr:nth-child(even),
.module-html table tr:nth-child(even),
.module-description table tr:nth-child(even) {
  background-color: #f9f9f9;
}
.module-text table tr:hover,
.module-content table tr:hover,
.module-html table tr:hover,
.module-description table tr:hover {
  background-color: #f0f0f0;
}

.module-image,
.module-gallery,
.module-image-grid,
.module-image-list {
  display: grid;
  gap: 1.5rem;
  margin-bottom: 2rem;
  width: 100%;
}
@media (max-width: 1023px) {
  .module-image,
  .module-gallery,
  .module-image-grid,
  .module-image-list {
    gap: 1rem;
  }
}
@media (max-width: 767px) {
  .module-image,
  .module-gallery,
  .module-image-grid,
  .module-image-list {
    gap: 0.75rem;
  }
}

.image-block {
  width: 100%;
  max-width: 100%;
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  -webkit-box-shadow: 0 4px 12px rgba(255, 222, 89, 0.15);
          box-shadow: 0 4px 12px rgba(255, 222, 89, 0.15);
  -webkit-transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.image-block::before {
  content: "";
  position: absolute;
  top: -80px;
  right: -60px;
  width: 300px;
  height: 300px;
  background: rgba(255, 243, 194, 0.2);
  border-radius: 40% 60% 70% 30%/40% 50% 60% 50%;
  z-index: 2;
  -webkit-animation: float 10s ease-in-out infinite;
          animation: float 10s ease-in-out infinite;
}
.image-block:hover {
  -webkit-box-shadow: 0 8px 24px rgba(255, 222, 89, 0.25);
          box-shadow: 0 8px 24px rgba(255, 222, 89, 0.25);
  -webkit-transform: translateY(-4px);
          transform: translateY(-4px);
}
.image-block img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  -webkit-transition: -webkit-transform 0.4s ease;
  transition: -webkit-transform 0.4s ease;
  transition: transform 0.4s ease;
  transition: transform 0.4s ease, -webkit-transform 0.4s ease;
}
.image-block:hover img {
  -webkit-transform: scale(1.03);
          transform: scale(1.03);
}
.image-block .image-caption {
  font-size: 0.9rem;
  color: #666;
  margin-top: 0.75rem;
  text-align: center;
  font-style: italic;
  font-weight: 500;
}
.image-block .image-credit {
  font-size: 0.9rem;
  color: #999;
  margin-top: 0.5rem;
  text-align: right;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}
@media (max-width: 1439px) {
  .gallery-grid {
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1.25rem;
  }
}
@media (max-width: 1023px) {
  .gallery-grid {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
  }
}
@media (max-width: 767px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
  }
}
@media (max-width: 375px) {
  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  aspect-ratio: 1;
  background: linear-gradient(135deg, #f0f0f0 0%, #e8e8e8 100%);
  -webkit-box-shadow: 0 2px 8px rgba(255, 222, 89, 0.1);
          box-shadow: 0 2px 8px rgba(255, 222, 89, 0.1);
  -webkit-transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.gallery-item::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200px;
  height: 200px;
  background: rgba(255, 222, 89, 0.05);
  border-radius: 40% 60% 70% 30%/40% 50% 60% 50%;
  z-index: 2;
  -webkit-animation: float 8s ease-in-out infinite;
          animation: float 8s ease-in-out infinite;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: -webkit-transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  transition: -webkit-transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), -webkit-transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.gallery-item::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 222, 89, 0);
  opacity: 0;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  z-index: 3;
}
.gallery-item .gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 222, 89, 0.2);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: #fff;
  font-size: 2.5rem;
  opacity: 0;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  z-index: 3;
}
.gallery-item .gallery-overlay.icon {
  font-weight: bold;
}
.gallery-item:hover {
  -webkit-box-shadow: 0 8px 24px rgba(255, 222, 89, 0.3);
          box-shadow: 0 8px 24px rgba(255, 222, 89, 0.3);
  -webkit-transform: translateY(-6px) scale(1.02);
          transform: translateY(-6px) scale(1.02);
}
.gallery-item:hover img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}
.gallery-item:hover::after {
  background: rgba(255, 222, 89, 0.4);
}
.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.btn,
.button {
  display: inline-block;
  padding: 0.85rem 1.75rem;
  background-color: #ffde59;
  color: #000;
  text-decoration: none;
  border-radius: 6px;
  -webkit-transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  font-weight: 700;
  border: 2px solid #ffde59;
  cursor: pointer;
  font-size: 1rem;
  letter-spacing: 0.5px;
  -webkit-box-shadow: 0 4px 12px rgba(255, 222, 89, 0.2);
          box-shadow: 0 4px 12px rgba(255, 222, 89, 0.2);
}
@media (max-width: 767px) {
  .btn,
  .button {
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
  }
}
.btn:hover,
.button:hover {
  background-color: rgb(255, 209.8337349398, 27.8);
  border-color: rgb(255, 209.8337349398, 27.8);
  -webkit-transform: translateY(-3px);
          transform: translateY(-3px);
  -webkit-box-shadow: 0 8px 20px rgba(255, 222, 89, 0.4);
          box-shadow: 0 8px 20px rgba(255, 222, 89, 0.4);
}
.btn:active,
.button:active {
  -webkit-transform: translateY(-1px);
          transform: translateY(-1px);
  -webkit-box-shadow: 0 4px 12px rgba(255, 222, 89, 0.3);
          box-shadow: 0 4px 12px rgba(255, 222, 89, 0.3);
}
.btn.outline, .btn.btn-outline,
.button.outline,
.button.btn-outline {
  background-color: transparent;
  color: #ffde59;
  -webkit-box-shadow: 0 2px 8px rgba(255, 222, 89, 0.15);
          box-shadow: 0 2px 8px rgba(255, 222, 89, 0.15);
}
.btn.outline:hover, .btn.btn-outline:hover,
.button.outline:hover,
.button.btn-outline:hover {
  background-color: #ffde59;
  color: #000;
  -webkit-box-shadow: 0 8px 20px rgba(255, 222, 89, 0.35);
          box-shadow: 0 8px 20px rgba(255, 222, 89, 0.35);
}
.btn.secondary,
.button.secondary {
  background-color: #ffffff;
  color: #ffde59;
  border-color: #ddd;
  -webkit-box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
          box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
.btn.secondary:hover,
.button.secondary:hover {
  background-color: #f9f9f9;
  -webkit-box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
          box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}
.btn:disabled, .btn.disabled,
.button:disabled,
.button.disabled {
  opacity: 0.6;
  cursor: not-allowed;
  -webkit-transform: none;
          transform: none;
}
.btn:disabled:hover, .btn.disabled:hover,
.button:disabled:hover,
.button.disabled:hover {
  -webkit-box-shadow: 0 2px 8px rgba(255, 222, 89, 0.1);
          box-shadow: 0 2px 8px rgba(255, 222, 89, 0.1);
}

a.btn,
a.button {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
a.btn:focus,
a.button:focus {
  outline: 2px solid rgba(255, 222, 89, 0.5);
  outline-offset: 2px;
}

.btn-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.75rem;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media (max-width: 767px) {
  .btn-group {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .btn-group .btn,
  .btn-group .button {
    width: 100%;
  }
}

.separator,
.divider {
  height: 2px;
  background: -webkit-gradient(linear, left top, right top, from(transparent), color-stop(15%, #ffde59), color-stop(85%, #ffde59), to(transparent));
  background: linear-gradient(to right, transparent, #ffde59 15%, #ffde59 85%, transparent);
  margin: 2.5rem 0;
  position: relative;
}
@media (max-width: 1023px) {
  .separator,
  .divider {
    margin: 2rem 0;
  }
}
@media (max-width: 767px) {
  .separator,
  .divider {
    margin: 1.5rem 0;
  }
}
.separator.with-decoration,
.divider.with-decoration {
  height: 50px;
  background: transparent;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 3rem 0;
}
@media (max-width: 767px) {
  .separator.with-decoration,
  .divider.with-decoration {
    margin: 2rem 0;
  }
}
.separator.with-decoration::before,
.divider.with-decoration::before {
  content: "";
  position: absolute;
  width: 85%;
  height: 2px;
  background: -webkit-gradient(linear, left top, right top, from(transparent), color-stop(15%, #ffde59), color-stop(85%, #ffde59), to(transparent));
  background: linear-gradient(to right, transparent, #ffde59 15%, #ffde59 85%, transparent);
}
.separator.with-decoration::after,
.divider.with-decoration::after {
  content: "✦";
  position: relative;
  z-index: 1;
  color: #ffde59;
  font-size: 1.5rem;
  background-color: #ffffff;
  padding: 0 1rem;
  font-weight: 700;
}
.separator.subtle,
.divider.subtle {
  height: 1px;
  background: rgba(255, 222, 89, 0.2);
  margin: 1.5rem 0;
}
.separator.thick,
.divider.thick {
  height: 3px;
  background: #ffde59;
}

.divider-blob {
  height: 100px;
  position: relative;
  margin: 3rem 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media (max-width: 767px) {
  .divider-blob {
    height: 80px;
    margin: 2rem 0;
  }
}
.divider-blob svg {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.divider-blob.animated::before, .divider-blob.animated::after {
  content: "";
  position: absolute;
}
.divider-blob.animated::before {
  width: 400px;
  height: 80px;
  background: rgba(255, 222, 89, 0.1);
  border-radius: 50% 50% 50% 50%/40% 40% 60% 60%;
  z-index: 1;
  -webkit-animation: float 8s ease-in-out infinite;
          animation: float 8s ease-in-out infinite;
}

.featured-badge,
.badge,
.tag {
  display: inline-block;
  background-color: #ffde59;
  color: #000;
  padding: 0.35rem 0.85rem;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  margin: 0.25rem;
  letter-spacing: 0.5px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.featured-badge:hover,
.badge:hover,
.tag:hover {
  background-color: rgb(255, 211.8614457831, 38);
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}
.featured-badge.badge-secondary,
.badge.badge-secondary,
.tag.badge-secondary {
  background-color: #e8e8e8;
  color: #333;
  border: 1px solid #ccc;
}
.featured-badge.badge-success,
.badge.badge-success,
.tag.badge-success {
  background-color: #28a745;
  color: #ffffff;
}
.featured-badge.badge-danger,
.badge.badge-danger,
.tag.badge-danger {
  background-color: #dc3545;
  color: #ffffff;
}
.featured-badge.badge-info,
.badge.badge-info,
.tag.badge-info {
  background-color: #17a2b8;
  color: #ffffff;
}
.featured-badge.outline,
.badge.outline,
.tag.outline {
  background-color: transparent;
  border: 2px solid #ffde59;
  color: #ffde59;
  padding: 0.25rem 0.75rem;
}

.container-section,
.section-container {
  position: relative;
  width: 100%;
  margin-bottom: 2rem;
}
.container-section.with-background,
.section-container.with-background {
  background: linear-gradient(135deg, #fff3c2 0%, #fef9e8 100%);
  padding: 2.5rem 2rem;
  border-radius: 12px;
  -webkit-box-shadow: 0 4px 12px rgba(255, 222, 89, 0.15);
          box-shadow: 0 4px 12px rgba(255, 222, 89, 0.15);
  border-left: 5px solid #ffde59;
}
@media (max-width: 767px) {
  .container-section.with-background,
  .section-container.with-background {
    padding: 1.75rem 1.25rem;
  }
}
.container-section.highlight,
.section-container.highlight {
  background: linear-gradient(135deg, rgba(255, 222, 89, 0.05) 0%, rgba(255, 243, 194, 0.1) 100%);
  border: 2px solid #ffde59;
  padding: 2rem;
  border-radius: 8px;
}

.highlight-box,
.info-box,
.note-box,
.alert-box {
  position: relative;
  padding: 1.5rem;
  border-radius: 8px;
  margin-bottom: 1.5rem;
  border-left: 4px solid #ffde59;
  background: rgba(255, 243, 194, 0.3);
}
.highlight-box.highlight,
.info-box.highlight,
.note-box.highlight,
.alert-box.highlight {
  background: linear-gradient(135deg, #fff3c2 0%, #fef9e8 100%);
  border-left-color: #ffde59;
  -webkit-box-shadow: 0 2px 8px rgba(255, 222, 89, 0.1);
          box-shadow: 0 2px 8px rgba(255, 222, 89, 0.1);
}
.highlight-box.info,
.info-box.info,
.note-box.info,
.alert-box.info {
  background: rgba(23, 162, 184, 0.1);
  border-left-color: #17a2b8;
}
.highlight-box.success,
.info-box.success,
.note-box.success,
.alert-box.success {
  background: rgba(40, 167, 69, 0.1);
  border-left-color: #28a745;
}
.highlight-box.warning,
.info-box.warning,
.note-box.warning,
.alert-box.warning {
  background: rgba(255, 193, 7, 0.1);
  border-left-color: #ffc107;
}
.highlight-box.danger,
.info-box.danger,
.note-box.danger,
.alert-box.danger {
  background: rgba(220, 53, 69, 0.1);
  border-left-color: #dc3545;
}
.highlight-box p:last-child,
.info-box p:last-child,
.note-box p:last-child,
.alert-box p:last-child {
  margin-bottom: 0;
}
.highlight-box strong,
.info-box strong,
.note-box strong,
.alert-box strong {
  display: block;
  margin-bottom: 0.5rem;
  color: #ffde59;
}

.spacing-lg {
  margin-bottom: 2rem;
}
@media (max-width: 767px) {
  .spacing-lg {
    margin-bottom: 1.5rem;
  }
}

.spacing-md {
  margin-bottom: 1.5rem;
}

.spacing-sm {
  margin-bottom: 1rem;
}

.no-margin {
  margin: 0;
}

.no-padding {
  padding: 0;
}

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

.text-right {
  text-align: right;
}
@media (max-width: 767px) {
  .text-right {
    text-align: left;
  }
}

@media (max-width: 767px) {
  .hidden-mobile {
    display: none;
  }
}

@media (max-width: 1023px) {
  .hidden-tablet {
    display: none;
  }
}

.visible-mobile {
  display: none;
}
@media (max-width: 767px) {
  .visible-mobile {
    display: block;
  }
}

.visible-tablet {
  display: none;
}
@media (max-width: 1023px) {
  .visible-tablet {
    display: block;
  }
}

.flex-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1rem;
}
@media (max-width: 767px) {
  .flex-row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 0.75rem;
  }
}

.flex-equal > * {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-width: 0;
}

.flex-center {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

.module-team,
.module-people,
.module-testimonials {
  display: grid;
  gap: 2rem;
  margin-bottom: 2rem;
}
@media (max-width: 1023px) {
  .module-team,
  .module-people,
  .module-testimonials {
    gap: 1.5rem;
  }
}
@media (max-width: 767px) {
  .module-team,
  .module-people,
  .module-testimonials {
    gap: 1rem;
  }
}

.team-grid,
.people-grid,
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}
@media (max-width: 1439px) {
  .team-grid,
  .people-grid,
  .testimonials-grid {
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
  }
}
@media (max-width: 1023px) {
  .team-grid,
  .people-grid,
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}
@media (max-width: 767px) {
  .team-grid,
  .people-grid,
  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}

.team-card,
.people-card,
.testimonial-card {
  text-align: center;
  background: linear-gradient(135deg, #fff3c2 0%, #fef9e8 100%);
  border-radius: 12px;
  overflow: hidden;
  -webkit-box-shadow: 0 4px 12px rgba(255, 222, 89, 0.15);
          box-shadow: 0 4px 12px rgba(255, 222, 89, 0.15);
  -webkit-transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
}
.team-card::before,
.people-card::before,
.testimonial-card::before {
  content: "";
  position: absolute;
  top: -80px;
  right: -60px;
  width: 280px;
  height: 280px;
  background: rgba(255, 222, 89, 0.08);
  border-radius: 40% 60% 70% 30%/40% 50% 60% 50%;
  z-index: 1;
  -webkit-animation: float 10s ease-in-out infinite;
          animation: float 10s ease-in-out infinite;
}
.team-card:hover,
.people-card:hover,
.testimonial-card:hover {
  -webkit-box-shadow: 0 12px 32px rgba(255, 222, 89, 0.25);
          box-shadow: 0 12px 32px rgba(255, 222, 89, 0.25);
  -webkit-transform: translateY(-8px);
          transform: translateY(-8px);
}
.team-card .team-image,
.team-card .people-image,
.people-card .team-image,
.people-card .people-image,
.testimonial-card .team-image,
.testimonial-card .people-image {
  width: 100%;
  height: 250px;
  background-color: #e8e8e8;
  background-size: cover;
  background-position: center;
  overflow: hidden;
  position: relative;
}
@media (max-width: 767px) {
  .team-card .team-image,
  .team-card .people-image,
  .people-card .team-image,
  .people-card .people-image,
  .testimonial-card .team-image,
  .testimonial-card .people-image {
    height: 200px;
  }
}
.team-card .team-image img,
.team-card .people-image img,
.people-card .team-image img,
.people-card .people-image img,
.testimonial-card .team-image img,
.testimonial-card .people-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: -webkit-transform 0.4s ease;
  transition: -webkit-transform 0.4s ease;
  transition: transform 0.4s ease;
  transition: transform 0.4s ease, -webkit-transform 0.4s ease;
}
.team-card:hover .team-image img, .team-card:hover .people-image img,
.people-card:hover .team-image img,
.people-card:hover .people-image img,
.testimonial-card:hover .team-image img,
.testimonial-card:hover .people-image img {
  -webkit-transform: scale(1.08);
          transform: scale(1.08);
}
.team-card .team-content,
.team-card .people-content,
.team-card .testimonial-content,
.people-card .team-content,
.people-card .people-content,
.people-card .testimonial-content,
.testimonial-card .team-content,
.testimonial-card .people-content,
.testimonial-card .testimonial-content {
  padding: 1.5rem;
  position: relative;
  z-index: 2;
}
.team-card .team-name,
.team-card .people-name,
.people-card .team-name,
.people-card .people-name,
.testimonial-card .team-name,
.testimonial-card .people-name {
  font-size: 1.15rem;
  font-weight: 700;
  color: #000;
  margin-bottom: 0.25rem;
}
.team-card .team-role,
.team-card .people-role,
.people-card .team-role,
.people-card .people-role,
.testimonial-card .team-role,
.testimonial-card .people-role {
  font-size: 1rem;
  color: #ffde59;
  font-weight: 600;
  margin-bottom: 0.75rem;
}
.team-card .team-bio,
.team-card .people-bio,
.people-card .team-bio,
.people-card .people-bio,
.testimonial-card .team-bio,
.testimonial-card .people-bio {
  font-size: 1rem;
  color: #333;
  line-height: 1.6;
  margin-bottom: 1rem;
}
.team-card .team-social,
.team-card .people-social,
.people-card .team-social,
.people-card .people-social,
.testimonial-card .team-social,
.testimonial-card .people-social {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.75rem;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.team-card .team-social a,
.team-card .people-social a,
.people-card .team-social a,
.people-card .people-social a,
.testimonial-card .team-social a,
.testimonial-card .people-social a {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 36px;
  height: 36px;
  background-color: #ffde59;
  color: #000;
  border-radius: 50%;
  text-decoration: none;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  font-weight: 600;
}
.team-card .team-social a:hover,
.team-card .people-social a:hover,
.people-card .team-social a:hover,
.people-card .people-social a:hover,
.testimonial-card .team-social a:hover,
.testimonial-card .people-social a:hover {
  background-color: rgb(255, 211.8614457831, 38);
  -webkit-transform: scale(1.15);
          transform: scale(1.15);
}

.testimonial-card {
  text-align: left;
}
.testimonial-card .testimonial-quote {
  font-size: 1rem;
  color: #333;
  font-style: italic;
  line-height: 1.8;
  margin-bottom: 1rem;
  position: relative;
  padding-left: 1.5rem;
}
.testimonial-card .testimonial-quote::before {
  content: '"';
  position: absolute;
  left: 0;
  top: -10px;
  font-size: 3rem;
  color: #ffde59;
  opacity: 0.3;
}
.testimonial-card .testimonial-author {
  font-weight: 700;
  color: #000;
  font-size: 0.95rem;
}
.testimonial-card .testimonial-role {
  font-size: 0.95rem;
  color: #666;
}
.testimonial-card .testimonial-rating {
  margin-top: 0.75rem;
  font-size: 1.1rem;
  color: #ffde59;
}
.testimonial-card .testimonial-rating .star {
  display: inline-block;
  margin-right: 0.25rem;
}

.module-features,
.module-usps,
.module-highlights {
  display: grid;
  gap: 2rem;
  margin-bottom: 2rem;
}
@media (max-width: 767px) {
  .module-features,
  .module-usps,
  .module-highlights {
    gap: 1.5rem;
  }
}

.features-grid,
.usps-grid,
.highlights-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}
@media (max-width: 1439px) {
  .features-grid,
  .usps-grid,
  .highlights-grid {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
  }
}
@media (max-width: 1023px) {
  .features-grid,
  .usps-grid,
  .highlights-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}
@media (max-width: 767px) {
  .features-grid,
  .usps-grid,
  .highlights-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}

.feature-item,
.usp-item,
.highlight-item {
  background: linear-gradient(135deg, #fff3c2 0%, #fef9e8 100%);
  border-radius: 12px;
  padding: 2rem 1.75rem;
  border-left: 4px solid #ffde59;
  -webkit-box-shadow: 0 4px 12px rgba(255, 222, 89, 0.12);
          box-shadow: 0 4px 12px rgba(255, 222, 89, 0.12);
  -webkit-transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
  overflow: hidden;
}
@media (max-width: 767px) {
  .feature-item,
  .usp-item,
  .highlight-item {
    padding: 1.5rem;
  }
}
.feature-item::after,
.usp-item::after,
.highlight-item::after {
  content: "";
  position: absolute;
  bottom: -60px;
  right: -60px;
  width: 250px;
  height: 250px;
  background: rgba(255, 222, 89, 0.08);
  border-radius: 60% 40% 30% 70%/60% 30% 70% 40%;
  z-index: 1;
  animation: float-slow 12s ease-in-out infinite reverse;
}
.feature-item:hover,
.usp-item:hover,
.highlight-item:hover {
  -webkit-box-shadow: 0 12px 28px rgba(255, 222, 89, 0.25);
          box-shadow: 0 12px 28px rgba(255, 222, 89, 0.25);
  -webkit-transform: translateY(-6px);
          transform: translateY(-6px);
}
.feature-item .feature-icon,
.feature-item .usp-icon,
.feature-item .highlight-icon,
.usp-item .feature-icon,
.usp-item .usp-icon,
.usp-item .highlight-icon,
.highlight-item .feature-icon,
.highlight-item .usp-icon,
.highlight-item .highlight-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  position: relative;
  z-index: 2;
  display: inline-block;
}
.feature-item .feature-title,
.feature-item .usp-title,
.feature-item .highlight-title,
.usp-item .feature-title,
.usp-item .usp-title,
.usp-item .highlight-title,
.highlight-item .feature-title,
.highlight-item .usp-title,
.highlight-item .highlight-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: #000;
  margin-bottom: 0.75rem;
  position: relative;
  z-index: 2;
}
.feature-item .feature-description,
.feature-item .usp-description,
.feature-item .highlight-description,
.usp-item .feature-description,
.usp-item .usp-description,
.usp-item .highlight-description,
.highlight-item .feature-description,
.highlight-item .usp-description,
.highlight-item .highlight-description {
  font-size: 1rem;
  color: #333;
  line-height: 1.7;
  position: relative;
  z-index: 2;
}

.module-calendar,
.module-schedule,
.module-timetable {
  margin-bottom: 2rem;
}

.calendar-grid,
.schedule-grid {
  display: grid;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.calendar-item,
.schedule-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1.25rem;
  padding: 1.25rem;
  background: linear-gradient(135deg, #fff3c2 0%, #fef9e8 100%);
  border-left: 4px solid #ffde59;
  border-radius: 8px;
  -webkit-box-shadow: 0 2px 8px rgba(255, 222, 89, 0.1);
          box-shadow: 0 2px 8px rgba(255, 222, 89, 0.1);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
@media (max-width: 767px) {
  .calendar-item,
  .schedule-item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 0.75rem;
    padding: 1rem;
  }
}
.calendar-item:hover,
.schedule-item:hover {
  -webkit-box-shadow: 0 6px 16px rgba(255, 222, 89, 0.2);
          box-shadow: 0 6px 16px rgba(255, 222, 89, 0.2);
  -webkit-transform: translateX(4px);
          transform: translateX(4px);
}

.calendar-date,
.schedule-time {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  min-width: 80px;
  padding: 0.75rem;
  background-color: #ffde59;
  color: #000;
  border-radius: 6px;
  font-weight: 700;
}
.calendar-date .date-day,
.calendar-date .time-hour,
.schedule-time .date-day,
.schedule-time .time-hour {
  font-size: 1.5rem;
}
.calendar-date .date-month,
.calendar-date .time-minute,
.schedule-time .date-month,
.schedule-time .time-minute {
  font-size: 0.95rem;
  text-transform: uppercase;
}

.calendar-content,
.schedule-content {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.calendar-content .event-title,
.schedule-content .event-title {
  font-size: 1rem;
  font-weight: 700;
  color: #000;
  margin-bottom: 0.25rem;
}
.calendar-content .event-description,
.schedule-content .event-description {
  font-size: 1rem;
  color: #333;
  line-height: 1.5;
  margin-bottom: 0.25rem;
}
.calendar-content .event-location,
.calendar-content .event-room,
.schedule-content .event-location,
.schedule-content .event-room {
  font-size: 0.95rem;
  color: #666;
}

.hero-wrapper {
  position: relative;
  width: 100%;
  min-height: 500px;
  background: linear-gradient(135deg, rgba(51, 51, 51, 0.95) 0%, rgba(33, 33, 33, 0.95) 100%);
  color: #fff;
  padding: 4rem 2rem;
  margin-bottom: 3rem;
  overflow: hidden;
  border-radius: 12px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
          box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}
@media (max-width: 1023px) {
  .hero-wrapper {
    min-height: 400px;
    padding: 3rem 1.5rem;
  }
}
@media (max-width: 767px) {
  .hero-wrapper {
    min-height: 300px;
    padding: 2rem 1rem;
  }
}
.hero-wrapper .hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  opacity: 0.5;
  z-index: 0;
}
.hero-wrapper .hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}
.hero-wrapper .hero-content .hero-headline {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  line-height: 1.3;
  color: #fff;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}
@media (max-width: 767px) {
  .hero-wrapper .hero-content .hero-headline {
    font-size: 1.8rem;
  }
}
.hero-wrapper .hero-content .hero-subtext {
  font-size: 20px;
  font-weight: 400;
  margin-bottom: 2rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
}
@media (max-width: 767px) {
  .hero-wrapper .hero-content .hero-subtext {
    font-size: 18px;
    margin-bottom: 1.5rem;
  }
}
.hero-wrapper .hero-newsletter {
  margin: 2rem 0;
}
.hero-wrapper .hero-newsletter .newsletter-form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 767px) {
  .hero-wrapper .hero-newsletter .newsletter-form {
    gap: 0.75rem;
  }
}
.hero-wrapper .hero-newsletter .newsletter-label {
  font-size: 1rem;
  font-weight: 600;
  color: #ffde59;
}
.hero-wrapper .hero-newsletter .form-inline {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.5rem;
  width: 100%;
  max-width: 400px;
}
@media (max-width: 767px) {
  .hero-wrapper .hero-newsletter .form-inline {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.hero-wrapper .hero-newsletter .form-inline input[type=email] {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding: 0.75rem 1rem;
  border: 2px solid #ffde59;
  border-radius: 6px;
  font-size: 1rem;
  background: rgba(255, 255, 255, 0.95);
}
.hero-wrapper .hero-newsletter .form-inline input[type=email]:focus {
  outline: none;
  border-color: rgb(255, 232.1385542169, 140);
  -webkit-box-shadow: 0 0 8px rgba(255, 222, 89, 0.3);
          box-shadow: 0 0 8px rgba(255, 222, 89, 0.3);
}
.hero-wrapper .hero-newsletter .form-inline .btn-submit {
  padding: 0.75rem 1.5rem;
  background: #ffde59;
  color: #000;
  border: none;
  border-radius: 6px;
  font-weight: 700;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.hero-wrapper .hero-newsletter .form-inline .btn-submit:hover {
  background: rgb(255, 232.1385542169, 140);
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
  -webkit-box-shadow: 0 4px 12px rgba(255, 222, 89, 0.3);
          box-shadow: 0 4px 12px rgba(255, 222, 89, 0.3);
}
.hero-wrapper .hero-buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1rem;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media (max-width: 767px) {
  .hero-wrapper .hero-buttons {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 0.75rem;
  }
}
.hero-wrapper .hero-buttons .btn {
  padding: 1rem 2rem;
  font-size: 1rem;
  font-weight: 700;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  -webkit-transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  text-decoration: none;
  display: inline-block;
  text-align: center;
}
@media (max-width: 767px) {
  .hero-wrapper .hero-buttons .btn {
    padding: 0.75rem 1.5rem;
    font-size: 0.95rem;
  }
}
.hero-wrapper .hero-buttons .btn.btn-primary {
  background: #ffde59;
  color: #000;
}
.hero-wrapper .hero-buttons .btn.btn-primary:hover {
  background: rgb(255, 232.1385542169, 140);
  -webkit-transform: translateY(-3px);
          transform: translateY(-3px);
  -webkit-box-shadow: 0 8px 20px rgba(255, 222, 89, 0.4);
          box-shadow: 0 8px 20px rgba(255, 222, 89, 0.4);
}
.hero-wrapper .hero-buttons .btn.btn-secondary {
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
  border: 2px solid #fff;
}
.hero-wrapper .hero-buttons .btn.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.3);
  -webkit-transform: translateY(-3px);
          transform: translateY(-3px);
  -webkit-box-shadow: 0 8px 20px rgba(255, 255, 255, 0.2);
          box-shadow: 0 8px 20px rgba(255, 255, 255, 0.2);
}

.stats-wrapper {
  position: relative;
  width: 100%;
  margin-bottom: 3rem;
  padding: 3rem 2rem;
  background: linear-gradient(135deg, #ffde59 0%, rgb(255, 237.2078313253, 165.5) 100%);
  border-radius: 12px;
  -webkit-box-shadow: 0 12px 40px rgba(255, 222, 89, 0.3);
          box-shadow: 0 12px 40px rgba(255, 222, 89, 0.3);
  overflow: visible;
}
@media (max-width: 1023px) {
  .stats-wrapper {
    padding: 2rem 1.5rem;
  }
}
@media (max-width: 767px) {
  .stats-wrapper {
    padding: 2rem 1rem;
  }
}
.stats-wrapper .stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}
@media (max-width: 1023px) {
  .stats-wrapper .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}
@media (max-width: 767px) {
  .stats-wrapper .stats-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}
.stats-wrapper .stat-card {
  text-align: center;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  backdrop-filter: blur(10px);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.stats-wrapper .stat-card:hover {
  background: rgba(255, 255, 255, 0.25);
  -webkit-transform: translateY(-4px);
          transform: translateY(-4px);
}
.stats-wrapper .stat-card .stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: #000;
  margin-bottom: 0.5rem;
  line-height: 1.2;
}
@media (max-width: 767px) {
  .stats-wrapper .stat-card .stat-number {
    font-size: 2rem;
  }
}
.stats-wrapper .stat-card .stat-label {
  font-size: 1.1rem;
  font-weight: 700;
  color: #000;
  margin-bottom: 0.75rem;
}
@media (max-width: 767px) {
  .stats-wrapper .stat-card .stat-label {
    font-size: 1rem;
  }
}
.stats-wrapper .stat-card .stat-description {
  font-size: 0.95rem;
  color: rgba(0, 0, 0, 0.85);
  line-height: 1.5;
}
@media (max-width: 767px) {
  .stats-wrapper .stat-card .stat-description {
    font-size: 0.9rem;
  }
}

.pillars-wrapper {
  position: relative;
  width: 100%;
  margin-bottom: 3rem;
  overflow: visible;
}
.pillars-wrapper .pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}
@media (max-width: 1023px) {
  .pillars-wrapper .pillars-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}
@media (max-width: 767px) {
  .pillars-wrapper .pillars-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}
.pillars-wrapper .pillar-card {
  position: relative;
  border-radius: 12px;
  background: linear-gradient(135deg, #fff3c2 0%, #fef9e8 100%);
  overflow: hidden;
  -webkit-box-shadow: 0 8px 24px rgba(255, 222, 89, 0.15);
          box-shadow: 0 8px 24px rgba(255, 222, 89, 0.15);
  -webkit-transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.pillars-wrapper .pillar-card:hover {
  -webkit-transform: translateY(-8px);
          transform: translateY(-8px);
  -webkit-box-shadow: 0 16px 40px rgba(255, 222, 89, 0.3);
          box-shadow: 0 16px 40px rgba(255, 222, 89, 0.3);
}
.pillars-wrapper .pillar-card:hover .pillar-image {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}
.pillars-wrapper .pillar-card .pillar-image {
  width: 100%;
  height: 250px;
  overflow: hidden;
  background: #f0f0f0;
}
@media (max-width: 767px) {
  .pillars-wrapper .pillar-card .pillar-image {
    height: 200px;
  }
}
.pillars-wrapper .pillar-card .pillar-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
.pillars-wrapper .pillar-card .pillar-content {
  padding: 1.75rem;
  position: relative;
  z-index: 1;
}
@media (max-width: 767px) {
  .pillars-wrapper .pillar-card .pillar-content {
    padding: 1.25rem;
  }
}
.pillars-wrapper .pillar-card .pillar-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: #000;
  margin-bottom: 1rem;
  line-height: 1.4;
}
@media (max-width: 767px) {
  .pillars-wrapper .pillar-card .pillar-title {
    font-size: 1.15rem;
  }
}
.pillars-wrapper .pillar-card .pillar-text {
  font-size: 1rem;
  color: #333;
  line-height: 1.6;
  margin-bottom: 1.25rem;
}
@media (max-width: 767px) {
  .pillars-wrapper .pillar-card .pillar-text {
    font-size: 0.95rem;
    margin-bottom: 1rem;
  }
}
.pillars-wrapper .pillar-card .pillar-link {
  display: inline-block;
  font-size: 0.95rem;
  font-weight: 700;
  color: #ffde59;
  text-decoration: none;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.pillars-wrapper .pillar-card .pillar-link:hover {
  color: rgb(255, 211.8614457831, 38);
  -webkit-transform: translateX(4px);
          transform: translateX(4px);
}

.aktuelle-lage-wrapper {
  position: relative;
  width: 100%;
  margin-bottom: 3rem;
  padding: 2.5rem;
  background: linear-gradient(135deg, rgba(255, 243, 194, 0.1) 0%, rgba(255, 222, 89, 0.05) 100%);
  border-left: 5px solid #ffde59;
  border-radius: 12px;
  overflow: visible;
  -webkit-box-shadow: 0 8px 24px rgba(255, 222, 89, 0.1);
          box-shadow: 0 8px 24px rgba(255, 222, 89, 0.1);
}
@media (max-width: 1023px) {
  .aktuelle-lage-wrapper {
    padding: 2rem;
  }
}
@media (max-width: 767px) {
  .aktuelle-lage-wrapper {
    padding: 1.5rem;
  }
}
.aktuelle-lage-wrapper .aktuelle-lage-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
@media (max-width: 1023px) {
  .aktuelle-lage-wrapper .aktuelle-lage-content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 1.5rem;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
  }
}
@media (max-width: 767px) {
  .aktuelle-lage-wrapper .aktuelle-lage-content {
    gap: 1rem;
  }
}
.aktuelle-lage-wrapper .aktuelle-lage-image {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 100%;
  max-width: 350px;
  height: 250px;
  border-radius: 8px;
  overflow: hidden;
  -webkit-box-shadow: 0 6px 16px rgba(255, 222, 89, 0.15);
          box-shadow: 0 6px 16px rgba(255, 222, 89, 0.15);
}
@media (max-width: 1023px) {
  .aktuelle-lage-wrapper .aktuelle-lage-image {
    max-width: 100%;
    height: 300px;
  }
}
@media (max-width: 767px) {
  .aktuelle-lage-wrapper .aktuelle-lage-image {
    height: 200px;
  }
}
.aktuelle-lage-wrapper .aktuelle-lage-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
.aktuelle-lage-wrapper .aktuelle-lage-image:hover img {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}
.aktuelle-lage-wrapper .aktuelle-lage-text {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
.aktuelle-lage-wrapper .aktuelle-lage-text .aktuelle-lage-title {
  font-size: 1.4rem;
  font-weight: 700;
  color: #000;
  margin-bottom: 1rem;
  line-height: 1.4;
}
@media (max-width: 767px) {
  .aktuelle-lage-wrapper .aktuelle-lage-text .aktuelle-lage-title {
    font-size: 1.2rem;
  }
}
.aktuelle-lage-wrapper .aktuelle-lage-text .aktuelle-lage-description {
  font-size: 1rem;
  color: #333;
  line-height: 1.7;
  margin-bottom: 1.25rem;
}
@media (max-width: 767px) {
  .aktuelle-lage-wrapper .aktuelle-lage-text .aktuelle-lage-description {
    font-size: 0.95rem;
  }
}
.aktuelle-lage-wrapper .aktuelle-lage-text .aktuelle-lage-meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 1.5rem;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.aktuelle-lage-wrapper .aktuelle-lage-text .aktuelle-lage-meta .article-date {
  font-size: 0.9rem;
  color: #ffde59;
  font-weight: 600;
}
.aktuelle-lage-wrapper .aktuelle-lage-text .btn-primary {
  -ms-flex-item-align: start;
      align-self: flex-start;
  padding: 0.75rem 1.5rem;
  background: #ffde59;
  color: #000;
  border: none;
  border-radius: 6px;
  font-weight: 700;
  cursor: pointer;
  font-size: 0.95rem;
  text-decoration: none;
  display: inline-block;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.aktuelle-lage-wrapper .aktuelle-lage-text .btn-primary:hover {
  background: rgb(255, 232.1385542169, 140);
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
  -webkit-box-shadow: 0 6px 16px rgba(255, 222, 89, 0.3);
          box-shadow: 0 6px 16px rgba(255, 222, 89, 0.3);
}

.news-grid-wrapper {
  position: relative;
  width: 100%;
  margin-bottom: 3rem;
  overflow: visible;
}
.news-grid-wrapper .news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto 2rem;
}
@media (max-width: 1023px) {
  .news-grid-wrapper .news-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}
@media (max-width: 767px) {
  .news-grid-wrapper .news-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}
.news-grid-wrapper .news-card {
  position: relative;
  border-radius: 12px;
  background: #fff;
  overflow: hidden;
  -webkit-box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
          box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
  -webkit-transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: 100%;
}
.news-grid-wrapper .news-card:hover {
  -webkit-transform: translateY(-8px);
          transform: translateY(-8px);
  -webkit-box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
          box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
}
.news-grid-wrapper .news-card:hover .news-card-image img {
  -webkit-transform: scale(1.08);
          transform: scale(1.08);
}
.news-grid-wrapper .news-card .news-card-image {
  width: 100%;
  height: 200px;
  overflow: hidden;
  background: #f0f0f0;
}
@media (max-width: 767px) {
  .news-grid-wrapper .news-card .news-card-image {
    height: 180px;
  }
}
.news-grid-wrapper .news-card .news-card-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
.news-grid-wrapper .news-card .news-card-content {
  padding: 1.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
@media (max-width: 767px) {
  .news-grid-wrapper .news-card .news-card-content {
    padding: 1.25rem;
  }
}
.news-grid-wrapper .news-card .news-card-title {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  line-height: 1.4;
}
@media (max-width: 767px) {
  .news-grid-wrapper .news-card .news-card-title {
    font-size: 1.05rem;
  }
}
.news-grid-wrapper .news-card .news-card-title a {
  text-decoration: none;
  color: #000;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}
.news-grid-wrapper .news-card .news-card-title a:hover {
  color: #ffde59;
}
.news-grid-wrapper .news-card .news-card-date {
  font-size: 0.85rem;
  color: #ffde59;
  font-weight: 600;
  margin-bottom: 0.75rem;
}
.news-grid-wrapper .news-card .news-card-excerpt {
  font-size: 0.95rem;
  color: #666;
  line-height: 1.6;
  margin-bottom: 1rem;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
@media (max-width: 767px) {
  .news-grid-wrapper .news-card .news-card-excerpt {
    font-size: 0.9rem;
  }
}
.news-grid-wrapper .news-card .news-card-link {
  font-size: 0.95rem;
  font-weight: 700;
  color: #ffde59;
  text-decoration: none;
  display: inline-block;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.news-grid-wrapper .news-card .news-card-link:hover {
  color: rgb(255, 211.8614457831, 38);
  -webkit-transform: translateX(4px);
          transform: translateX(4px);
}
.news-grid-wrapper .news-all-link {
  text-align: center;
}
.news-grid-wrapper .news-all-link .btn-secondary {
  display: inline-block;
  padding: 0.75rem 1.75rem;
  background: linear-gradient(135deg, #fff3c2 0%, rgb(255, 237.2078313253, 165.5) 100%);
  border: 2px solid #ffde59;
  color: #000;
  border-radius: 8px;
  font-weight: 700;
  text-decoration: none;
  font-size: 1rem;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.news-grid-wrapper .news-all-link .btn-secondary:hover {
  -webkit-transform: translateY(-3px);
          transform: translateY(-3px);
  -webkit-box-shadow: 0 8px 20px rgba(255, 222, 89, 0.3);
          box-shadow: 0 8px 20px rgba(255, 222, 89, 0.3);
}

.ctas-wrapper {
  position: relative;
  width: 100%;
  margin-bottom: 3rem;
  padding: 2rem;
}
@media (max-width: 767px) {
  .ctas-wrapper {
    padding: 1rem;
  }
}
.ctas-wrapper .ctas-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}
@media (max-width: 1023px) {
  .ctas-wrapper .ctas-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
  }
}
@media (max-width: 767px) {
  .ctas-wrapper .ctas-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}
.ctas-wrapper .cta-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.ctas-wrapper .cta-item .btn {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding: 1.25rem 1rem;
  font-size: 1rem;
  font-weight: 700;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  text-decoration: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}
@media (max-width: 767px) {
  .ctas-wrapper .cta-item .btn {
    padding: 1rem;
    font-size: 0.95rem;
  }
}
.ctas-wrapper .cta-item .btn.btn-primary {
  background: #ffde59;
  color: #000;
}
.ctas-wrapper .cta-item .btn.btn-primary:hover {
  background: rgb(255, 232.1385542169, 140);
  -webkit-transform: translateY(-4px);
          transform: translateY(-4px);
  -webkit-box-shadow: 0 8px 20px rgba(255, 222, 89, 0.3);
          box-shadow: 0 8px 20px rgba(255, 222, 89, 0.3);
}
.ctas-wrapper .cta-item .btn.btn-secondary {
  background: #454545;
  color: #fff;
}
.ctas-wrapper .cta-item .btn.btn-secondary:hover {
  background: #333;
  -webkit-transform: translateY(-4px);
          transform: translateY(-4px);
  -webkit-box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
          box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.trust-wrapper {
  position: relative;
  width: 100%;
  margin-bottom: 3rem;
  padding: 3rem 2rem;
  background: linear-gradient(135deg, #f8f8f8 0%, #fafafa 100%);
  border-radius: 12px;
  -webkit-box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
          box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
}
@media (max-width: 1023px) {
  .trust-wrapper {
    padding: 2rem 1.5rem;
  }
}
@media (max-width: 767px) {
  .trust-wrapper {
    padding: 1.75rem 1rem;
  }
}
.trust-wrapper .trust-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}
.trust-wrapper .trust-content .trust-headline {
  font-size: 1.8rem;
  font-weight: 700;
  color: #000;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
@media (max-width: 767px) {
  .trust-wrapper .trust-content .trust-headline {
    font-size: 1.5rem;
    margin-bottom: 1.25rem;
  }
}
.trust-wrapper .trust-content .trust-text {
  font-size: 1rem;
  color: #333;
  line-height: 1.7;
  margin-bottom: 2rem;
}
@media (max-width: 767px) {
  .trust-wrapper .trust-content .trust-text {
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
  }
}
.trust-wrapper .trust-content .trust-bullets {
  list-style: none;
  padding: 0;
  margin-bottom: 2rem;
  text-align: left;
  display: inline-block;
}
@media (max-width: 767px) {
  .trust-wrapper .trust-content .trust-bullets {
    margin-bottom: 1.5rem;
  }
}
.trust-wrapper .trust-content .trust-bullet {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  font-size: 1rem;
  color: #333;
  line-height: 1.5;
}
@media (max-width: 767px) {
  .trust-wrapper .trust-content .trust-bullet {
    font-size: 0.95rem;
    margin-bottom: 0.65rem;
  }
}
.trust-wrapper .trust-content .trust-bullet .bullet-icon {
  color: #ffde59;
  font-weight: 700;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-top: 2px;
}
.trust-wrapper .trust-content .trust-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 2rem;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media (max-width: 767px) {
  .trust-wrapper .trust-content .trust-links {
    gap: 1rem;
  }
}
.trust-wrapper .trust-content .trust-link {
  font-size: 1rem;
  font-weight: 700;
  color: #ffde59;
  text-decoration: none;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  display: inline-block;
}
.trust-wrapper .trust-content .trust-link:hover {
  color: rgb(255, 211.8614457831, 38);
  -webkit-transform: translateX(4px);
          transform: translateX(4px);
}

@media (min-width: 375px) {
  .module-wrapper {
    margin-bottom: 1.5rem;
  }
}
@media (min-width: 768px) {
  .module-wrapper {
    margin-bottom: 2rem;
  }
  .module-headline,
  .module-hero-banner {
    min-height: 250px;
    padding: 4rem 2rem;
  }
}
@media (min-width: 1024px) {
  .module-wrapper {
    padding: 3rem 1.5rem;
  }
  .module-headline,
  .module-hero-banner {
    min-height: 300px;
    padding: 5rem 3rem;
  }
  .news-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
  }
  .team-grid,
  .people-grid,
  .testimonials-grid,
  .features-grid,
  .usps-grid,
  .highlights-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }
}
@media (min-width: 1440px) {
  .module-wrapper.light-yellow-bg {
    padding: 3.5rem 2rem;
  }
  .features-grid,
  .usps-grid,
  .highlights-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media (min-width: 1920px) {
  body {
    max-width: 1920px;
    margin: 0 auto;
  }
  .module-wrapper {
    padding: 4rem 3rem;
  }
  .module-headline,
  .module-hero-banner {
    min-height: 350px;
    padding: 6rem 4rem;
  }
}
/**
 * MODUL 37: RUNDBRIEF LISTE STYLING
 * 
 * Professionelle, chronologische Liste von PDF-Rundbriefe
 * mit Download-Links und Metainformationen
 */
.rundbrief-liste-wrapper {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  padding: 20px;
}
@media (max-width: 768px) {
  .rundbrief-liste-wrapper {
    padding: 15px;
  }
}

.rundbrief-liste {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0;
  position: relative;
}
.rundbrief-liste::before {
  content: "";
  position: absolute;
  left: 40px;
  top: 60px;
  bottom: 0;
  width: 2px;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 222, 89, 0.3)), to(rgba(255, 222, 89, 0.1)));
  background: linear-gradient(to bottom, rgba(255, 222, 89, 0.3) 0%, rgba(255, 222, 89, 0.1) 100%);
  z-index: 0;
}
@media (max-width: 768px) {
  .rundbrief-liste::before {
    left: 30px;
  }
}

.rundbrief-year-divider {
  display: block;
  margin: 0 0 1.5rem 0;
  position: relative;
  left: 70px;
  z-index: 1;
}
.rundbrief-year-divider::before, .rundbrief-year-divider::after {
  content: "";
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  height: 1px;
  background: -webkit-gradient(linear, left top, right top, from(rgba(255, 222, 89, 0.2)), to(rgba(255, 222, 89, 0.05)));
  background: linear-gradient(to right, rgba(255, 222, 89, 0.2) 0%, rgba(255, 222, 89, 0.05) 100%);
  color: #999;
}
.rundbrief-year-divider::before {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}
.rundbrief-year-divider::after {
  -webkit-box-flex: 2;
      -ms-flex-positive: 2;
          flex-grow: 2;
}

.year-label {
  font-size: 1.4rem;
  font-weight: 700;
  color: rgb(216.5, 173.4608433735, 0);
  color: #333;
  padding: 0 1rem;
  background: white;
  white-space: nowrap;
  letter-spacing: 1px;
}

.rundbrief-item {
  position: relative;
  z-index: 1;
  margin-bottom: 0;
  padding: 0 0 1.5rem 0;
  page-break-inside: avoid;
}
.rundbrief-item::before {
  content: "";
  position: absolute;
  left: 28px;
  top: 8px;
  width: 24px;
  height: 24px;
  background: #ffde59;
  border: 4px solid white;
  border-radius: 50%;
  -webkit-box-shadow: 0 0 0 3px rgba(255, 222, 89, 0.2);
          box-shadow: 0 0 0 3px rgba(255, 222, 89, 0.2);
  z-index: 2;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
@media (max-width: 768px) {
  .rundbrief-item::before {
    left: 18px;
    width: 20px;
    height: 20px;
    border-width: 3px;
  }
}
.rundbrief-item:hover::before {
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
  -webkit-box-shadow: 0 0 0 6px rgba(255, 222, 89, 0.3);
          box-shadow: 0 0 0 6px rgba(255, 222, 89, 0.3);
}
.rundbrief-item:last-child {
  padding-bottom: 0;
}

.rundbrief-item-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1.5rem;
  margin-left: 80px;
  padding: 1.25rem;
  background: white;
  border: 1px solid #f0f0f0;
  border-radius: 8px;
  -webkit-transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  -webkit-box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
          box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}
@media (max-width: 768px) {
  .rundbrief-item-content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 1rem;
    margin-left: 60px;
    padding: 1rem;
  }
}
@media (max-width: 480px) {
  .rundbrief-item-content {
    margin-left: 50px;
    padding: 0.875rem;
  }
}
.rundbrief-item:hover .rundbrief-item-content {
  background: linear-gradient(135deg, #fafafa 0%, #ffffff 100%);
  border-color: #ffde59;
  -webkit-box-shadow: 0 6px 20px rgba(255, 222, 89, 0.12);
          box-shadow: 0 6px 20px rgba(255, 222, 89, 0.12);
  -webkit-transform: translateY(-3px);
          transform: translateY(-3px);
}

.rundbrief-item-meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.75rem;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  min-width: 80px;
}
@media (max-width: 768px) {
  .rundbrief-item-meta {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: 100%;
    min-width: auto;
  }
}

.rundbrief-date .date-display {
  display: block;
  font-size: 0.95rem;
  font-weight: 600;
  color: rgb(216.5, 173.4608433735, 0);
  text-align: center;
  line-height: 1.3;
  letter-spacing: 0.5px;
}
@media (max-width: 768px) {
  .rundbrief-date .date-display {
    font-size: 0.9rem;
  }
}

.rundbrief-icon {
  width: 40px;
  height: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: linear-gradient(135deg, #fff3c2 0%, rgba(255, 222, 89, 0.15) 100%);
  border-radius: 8px;
  color: rgb(216.5, 173.4608433735, 0);
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.rundbrief-icon svg {
  width: 22px;
  height: 22px;
  stroke-width: 2.5;
}
.rundbrief-item:hover .rundbrief-icon {
  background: linear-gradient(135deg, #ffde59 0%, rgba(255, 222, 89, 0.8) 100%);
  color: #000;
  -webkit-transform: scale(1.15);
          transform: scale(1.15);
}

.rundbrief-item-text {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 0.75rem;
}

.rundbrief-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: #333;
  margin: 0;
  line-height: 1.4;
}
@media (max-width: 768px) {
  .rundbrief-title {
    font-size: 1.1rem;
  }
}
.rundbrief-title a {
  color: #333;
  text-decoration: none;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  display: inline-block;
}
.rundbrief-title a:hover {
  color: #ffde59;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

.rundbrief-description {
  font-size: 0.95rem;
  color: #666;
  line-height: 1.6;
  margin: 0;
}
@media (max-width: 768px) {
  .rundbrief-description {
    font-size: 0.9rem;
  }
}

.rundbrief-item-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.75rem;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 0.5rem;
}

.link-read,
.link-download {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1.2rem;
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: 6px;
  text-decoration: none;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  white-space: nowrap;
}
.link-read svg,
.link-download svg {
  width: 16px;
  height: 16px;
  stroke-width: 2.5;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
@media (max-width: 768px) {
  .link-read,
  .link-download {
    padding: 0.5rem 1rem;
    font-size: 0.85rem;
  }
}

.link-read {
  background: linear-gradient(135deg, #ffde59 0%, rgb(255, 227.0692771084, 114.5) 100%);
  color: #000;
  border: 2px solid #ffde59;
  -webkit-box-shadow: 0 3px 12px rgba(255, 222, 89, 0.2);
          box-shadow: 0 3px 12px rgba(255, 222, 89, 0.2);
}
.link-read:hover {
  background: linear-gradient(135deg, rgb(255, 213.8891566265, 48.2) 0%, #ffde59 100%);
  border-color: rgb(255, 213.8891566265, 48.2);
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
  -webkit-box-shadow: 0 6px 20px rgba(255, 222, 89, 0.35);
          box-shadow: 0 6px 20px rgba(255, 222, 89, 0.35);
}
.link-read:hover svg {
  -webkit-transform: translateX(2px);
          transform: translateX(2px);
}
.link-read:active {
  -webkit-transform: translateY(0);
          transform: translateY(0);
  -webkit-box-shadow: 0 2px 8px rgba(255, 222, 89, 0.25);
          box-shadow: 0 2px 8px rgba(255, 222, 89, 0.25);
}

.link-download {
  background: transparent;
  color: rgb(191, 153.0301204819, 0);
  border: 2px solid #ffde59;
  -webkit-box-shadow: 0 2px 8px rgba(255, 222, 89, 0.1);
          box-shadow: 0 2px 8px rgba(255, 222, 89, 0.1);
}
.link-download:hover {
  background: #ffde59;
  color: #000;
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
  -webkit-box-shadow: 0 6px 16px rgba(255, 222, 89, 0.25);
          box-shadow: 0 6px 16px rgba(255, 222, 89, 0.25);
}
.link-download:hover svg {
  -webkit-transform: translateY(2px);
          transform: translateY(2px);
}
.link-download:active {
  -webkit-transform: translateY(0);
          transform: translateY(0);
  -webkit-box-shadow: 0 2px 6px rgba(255, 222, 89, 0.15);
          box-shadow: 0 2px 6px rgba(255, 222, 89, 0.15);
}

@media (max-width: 768px) {
  .rundbrief-liste-wrapper {
    padding: 10px;
  }
  .rundbrief-liste::before {
    left: 30px;
  }
}
@media (max-width: 480px) {
  .rundbrief-liste::before {
    left: 22px;
  }
  .rundbrief-item::before {
    left: 12px;
    width: 18px;
    height: 18px;
    border-width: 2px;
  }
  .rundbrief-item-content {
    margin-left: 45px;
    gap: 0.75rem;
  }
  .rundbrief-title {
    font-size: 1rem;
  }
  .link-read,
  .link-download {
    padding: 0.5rem 0.9rem;
    font-size: 0.8rem;
  }
  .year-label {
    font-size: 1.2rem;
  }
}
@media print {
  .rundbrief-item-links {
    display: none;
  }
  .rundbrief-item-content {
    -webkit-box-shadow: none;
            box-shadow: none;
    border: 1px solid #ddd;
    page-break-inside: avoid;
  }
}
.text-left {
  text-align: left;
}

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

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

.text-justify {
  text-align: justify;
}

.text-decoration-none {
  text-decoration: none;
}
.text-decoration-none:hover {
  text-decoration: none;
}

.text-underline {
  text-decoration: underline;
}

.font-weight-light {
  font-weight: 300;
}

.font-weight-normal {
  font-weight: 400;
}

.font-weight-semibold {
  font-weight: 600;
}

.font-weight-bold {
  font-weight: 700;
}

.fs-sm {
  font-size: 16px;
}

.fs-base {
  font-size: 18px;
}

.fs-lg {
  font-size: 20px;
}

.fs-xl {
  font-size: 24px;
}

.fs-xxl {
  font-size: 28px;
}

.text-primary {
  color: #ffde59;
}

.text-secondary {
  color: #ffde59;
}

.text-light {
  color: #666666;
}

.text-dark {
  color: #333333;
}

.text-white {
  color: #ffffff;
}

.bg-primary {
  background-color: #ffde59;
}

.bg-secondary {
  background-color: #ffde59;
}

.bg-light {
  background-color: #f5f5f5;
}

.bg-dark {
  background-color: #333333;
}

.bg-white {
  background-color: #ffffff;
}

.mt-0 {
  margin-top: 0;
}

.mt-xs {
  margin-top: 0.5rem;
}

.mt-sm {
  margin-top: 1rem;
}

.mt-md {
  margin-top: 1.5rem;
}

.mt-lg {
  margin-top: 2rem;
}

.mt-xl {
  margin-top: 3rem;
}

.mt-xxl {
  margin-top: 4rem;
}

.mb-0 {
  margin-bottom: 0;
}

.mb-xs {
  margin-bottom: 0.5rem;
}

.mb-sm {
  margin-bottom: 1rem;
}

.mb-md {
  margin-bottom: 1.5rem;
}

.mb-lg {
  margin-bottom: 2rem;
}

.mb-xl {
  margin-bottom: 3rem;
}

.mb-xxl {
  margin-bottom: 4rem;
}

.ml-0 {
  margin-left: 0;
}

.ml-xs {
  margin-left: 0.5rem;
}

.ml-sm {
  margin-left: 1rem;
}

.ml-md {
  margin-left: 1.5rem;
}

.ml-lg {
  margin-left: 2rem;
}

.ml-xl {
  margin-left: 3rem;
}

.ml-xxl {
  margin-left: 4rem;
}

.mr-0 {
  margin-right: 0;
}

.mr-xs {
  margin-right: 0.5rem;
}

.mr-sm {
  margin-right: 1rem;
}

.mr-md {
  margin-right: 1.5rem;
}

.mr-lg {
  margin-right: 2rem;
}

.mr-xl {
  margin-right: 3rem;
}

.mr-xxl {
  margin-right: 4rem;
}

.mx-0 {
  margin-left: 0;
  margin-right: 0;
}

.mx-xs {
  margin-left: 0.5rem;
  margin-right: 0.5rem;
}

.mx-sm {
  margin-left: 1rem;
  margin-right: 1rem;
}

.mx-md {
  margin-left: 1.5rem;
  margin-right: 1.5rem;
}

.mx-lg {
  margin-left: 2rem;
  margin-right: 2rem;
}

.mx-xl {
  margin-left: 3rem;
  margin-right: 3rem;
}

.mx-xxl {
  margin-left: 4rem;
  margin-right: 4rem;
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

.my-0 {
  margin-top: 0;
  margin-bottom: 0;
}

.my-xs {
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
}

.my-sm {
  margin-top: 1rem;
  margin-bottom: 1rem;
}

.my-md {
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
}

.my-lg {
  margin-top: 2rem;
  margin-bottom: 2rem;
}

.my-xl {
  margin-top: 3rem;
  margin-bottom: 3rem;
}

.my-xxl {
  margin-top: 4rem;
  margin-bottom: 4rem;
}

.my-auto {
  margin-top: auto;
  margin-bottom: auto;
}

.p-0 {
  padding: 0;
}

.p-xs {
  padding: 0.5rem;
}

.p-sm {
  padding: 1rem;
}

.p-md {
  padding: 1.5rem;
}

.p-lg {
  padding: 2rem;
}

.p-xl {
  padding: 3rem;
}

.p-xxl {
  padding: 4rem;
}

.pt-0 {
  padding-top: 0;
}

.pt-xs {
  padding-top: 0.5rem;
}

.pt-sm {
  padding-top: 1rem;
}

.pt-md {
  padding-top: 1.5rem;
}

.pt-lg {
  padding-top: 2rem;
}

.pt-xl {
  padding-top: 3rem;
}

.pt-xxl {
  padding-top: 4rem;
}

.pb-0 {
  padding-bottom: 0;
}

.pb-xs {
  padding-bottom: 0.5rem;
}

.pb-sm {
  padding-bottom: 1rem;
}

.pb-md {
  padding-bottom: 1.5rem;
}

.pb-lg {
  padding-bottom: 2rem;
}

.pb-xl {
  padding-bottom: 3rem;
}

.pb-xxl {
  padding-bottom: 4rem;
}

.pl-0 {
  padding-left: 0;
}

.pl-xs {
  padding-left: 0.5rem;
}

.pl-sm {
  padding-left: 1rem;
}

.pl-md {
  padding-left: 1.5rem;
}

.pl-lg {
  padding-left: 2rem;
}

.pl-xl {
  padding-left: 3rem;
}

.pl-xxl {
  padding-left: 4rem;
}

.pr-0 {
  padding-right: 0;
}

.pr-xs {
  padding-right: 0.5rem;
}

.pr-sm {
  padding-right: 1rem;
}

.pr-md {
  padding-right: 1.5rem;
}

.pr-lg {
  padding-right: 2rem;
}

.pr-xl {
  padding-right: 3rem;
}

.pr-xxl {
  padding-right: 4rem;
}

.px-0 {
  padding-left: 0;
  padding-right: 0;
}

.px-xs {
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}

.px-sm {
  padding-left: 1rem;
  padding-right: 1rem;
}

.px-md {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.px-lg {
  padding-left: 2rem;
  padding-right: 2rem;
}

.px-xl {
  padding-left: 3rem;
  padding-right: 3rem;
}

.px-xxl {
  padding-left: 4rem;
  padding-right: 4rem;
}

.py-0 {
  padding-top: 0;
  padding-bottom: 0;
}

.py-xs {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}

.py-sm {
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.py-md {
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}

.py-lg {
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.py-xl {
  padding-top: 3rem;
  padding-bottom: 3rem;
}

.py-xxl {
  padding-top: 4rem;
  padding-bottom: 4rem;
}

.d-none {
  display: none;
}

.d-block {
  display: block !important;
}

.d-inline {
  display: inline !important;
}

.d-inline-block {
  display: inline-block !important;
}

.d-flex {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
}

.d-grid {
  display: grid !important;
}

.flex-row {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}

.flex-column {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.flex-wrap {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.flex-nowrap {
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
}

.justify-content-start {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

.justify-content-center {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.justify-content-end {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.justify-content-between {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.justify-content-around {
  -ms-flex-pack: distribute;
      justify-content: space-around;
}

.justify-content-evenly {
  -webkit-box-pack: space-evenly;
      -ms-flex-pack: space-evenly;
          justify-content: space-evenly;
}

.align-items-start {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.align-items-center {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.align-items-end {
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}

.align-items-stretch {
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}

.gap-0 {
  gap: 0;
}

.gap-xs {
  gap: 0.5rem;
}

.gap-sm {
  gap: 1rem;
}

.gap-md {
  gap: 1.5rem;
}

.gap-lg {
  gap: 2rem;
}

.gap-xl {
  gap: 3rem;
}

.gap-xxl {
  gap: 4rem;
}

.visible {
  visibility: visible;
}

.invisible {
  visibility: hidden;
}

.overflow-auto {
  overflow: auto;
}

.overflow-hidden {
  overflow: hidden;
}

.overflow-visible {
  overflow: visible;
}

.overflow-scroll {
  overflow: scroll;
}

.overflow-x-auto {
  overflow-x: auto;
}

.overflow-y-auto {
  overflow-y: auto;
}

.position-static {
  position: static;
}

.position-relative {
  position: relative;
}

.position-absolute {
  position: absolute;
}

.position-fixed {
  position: fixed;
}

.position-sticky {
  position: sticky;
}

.float-left {
  float: left;
}

.float-right {
  float: right;
}

.float-none {
  float: none;
}

.clearfix {
  clear: both;
}

.w-100 {
  width: 100%;
}

.w-auto {
  width: auto;
}

.h-100 {
  height: 100%;
}

.h-auto {
  height: auto;
}

.min-w-100 {
  min-width: 100%;
}

.max-w-100 {
  max-width: 100%;
}

.min-h-100 {
  min-height: 100%;
}

.max-h-100 {
  max-height: 100%;
}

.shadow-none {
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
}

.shadow-sm {
  -webkit-box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
          box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
}

.shadow-md {
  -webkit-box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
          box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
}

.shadow-lg {
  -webkit-box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.175);
          box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.175);
}

.rounded {
  border-radius: 0.5rem;
}

.rounded-sm {
  border-radius: 0.25rem;
}

.rounded-lg {
  border-radius: 1rem;
}

.rounded-xl {
  border-radius: 1.5rem;
}

.rounded-full {
  border-radius: 50%;
}

.opacity-0 {
  opacity: 0;
}

.opacity-25 {
  opacity: 0.25;
}

.opacity-50 {
  opacity: 0.5;
}

.opacity-75 {
  opacity: 0.75;
}

.opacity-100 {
  opacity: 1;
}

.cursor-auto {
  cursor: auto;
}

.cursor-pointer {
  cursor: pointer;
}

.cursor-default {
  cursor: default;
}

.cursor-not-allowed {
  cursor: not-allowed;
}

.user-select-none {
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

.user-select-all {
  -webkit-user-select: all;
     -moz-user-select: all;
          user-select: all;
}

.user-select-auto {
  -webkit-user-select: auto;
     -moz-user-select: auto;
      -ms-user-select: auto;
          user-select: auto;
}

.whitespace-normal {
  white-space: normal;
}

.whitespace-nowrap {
  white-space: nowrap;
}

.whitespace-pre {
  white-space: pre;
}

.whitespace-pre-wrap {
  white-space: pre-wrap;
}

.word-break {
  word-break: break-word;
}

.word-break-all {
  word-break: break-all;
}

.text-truncate {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.line-clamp-1 {
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  line-clamp: 1;
  -webkit-box-orient: vertical;
}

.line-clamp-2 {
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
}

.line-clamp-3 {
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
}

.line-clamp-4 {
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  line-clamp: 4;
  -webkit-box-orient: vertical;
}

@media (max-width: 767.98px) {
  .d-none-xs {
    display: none;
  }
  .d-block-xs {
    display: block;
  }
  .d-flex-xs {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .d-inline-xs {
    display: inline;
  }
  .d-inline-block-xs {
    display: inline-block;
  }
}
@media (min-width: 768px) and (max-width: 1023.98px) {
  .d-none-sm {
    display: none;
  }
  .d-block-sm {
    display: block;
  }
  .d-flex-sm {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .d-inline-sm {
    display: inline;
  }
  .d-inline-block-sm {
    display: inline-block;
  }
}
@media (min-width: 1024px) and (max-width: 1439.98px) {
  .d-none-md {
    display: none;
  }
  .d-block-md {
    display: block;
  }
  .d-flex-md {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .d-inline-md {
    display: inline;
  }
  .d-inline-block-md {
    display: inline-block;
  }
}
@media (min-width: 1440px) and (max-width: 1919.98px) {
  .d-none-lg {
    display: none;
  }
  .d-block-lg {
    display: block;
  }
  .d-flex-lg {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .d-inline-lg {
    display: inline;
  }
  .d-inline-block-lg {
    display: inline-block;
  }
}
@media (min-width: 1920px) {
  .d-none-xl {
    display: none;
  }
  .d-block-xl {
    display: block;
  }
  .d-flex-xl {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .d-inline-xl {
    display: inline;
  }
  .d-inline-block-xl {
    display: inline-block;
  }
}
@media (min-width: 1024px) {
  .mt-md-lg {
    margin-top: 2rem;
  }
  .mb-md-lg {
    margin-bottom: 2rem;
  }
  .p-md-lg {
    padding: 2rem;
  }
}
@media (min-width: 1440px) {
  .mt-lg-xl {
    margin-top: 3rem;
  }
  .mb-lg-xl {
    margin-bottom: 3rem;
  }
  .p-lg-xl {
    padding: 3rem;
  }
}
@media (max-width: 767.98px) {
  h1 {
    font-size: 1.75rem;
  }
  h2 {
    font-size: 1.5rem;
  }
  h3 {
    font-size: 1.25rem;
  }
}
@media (min-width: 1024px) {
  h1 {
    font-size: 2rem;
  }
  h2 {
    font-size: 1.75rem;
  }
  h3 {
    font-size: 1.5rem;
  }
}
@media (min-width: 1440px) {
  h1 {
    font-size: 2.5rem;
  }
  h2 {
    font-size: 2rem;
  }
  h3 {
    font-size: 1.75rem;
  }
}
@media (max-width: 767.98px) {
  .col-xs-1 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 8.33333%;
            flex: 0 0 8.33333%;
  }
  .col-xs-2 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 16.66667%;
            flex: 0 0 16.66667%;
  }
  .col-xs-3 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 25%;
            flex: 0 0 25%;
  }
  .col-xs-4 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 33.33333%;
            flex: 0 0 33.33333%;
  }
  .col-xs-5 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 41.66667%;
            flex: 0 0 41.66667%;
  }
  .col-xs-6 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
            flex: 0 0 50%;
  }
  .col-xs-7 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 58.33333%;
            flex: 0 0 58.33333%;
  }
  .col-xs-8 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 66.66667%;
            flex: 0 0 66.66667%;
  }
  .col-xs-9 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 75%;
            flex: 0 0 75%;
  }
  .col-xs-10 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 83.33333%;
            flex: 0 0 83.33333%;
  }
  .col-xs-11 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 91.66667%;
            flex: 0 0 91.66667%;
  }
  .col-xs-12 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
  }
}
@media (max-width: 767.98px) {
  .text-left-xs {
    text-align: left;
  }
  .text-center-xs {
    text-align: center;
  }
  .text-right-xs {
    text-align: right;
  }
}
@media (min-width: 1024px) {
  .text-left-md {
    text-align: left;
  }
  .text-center-md {
    text-align: center;
  }
  .text-right-md {
    text-align: right;
  }
}
@media (min-width: 1440px) {
  .text-left-lg {
    text-align: left;
  }
  .text-center-lg {
    text-align: center;
  }
  .text-right-lg {
    text-align: right;
  }
}
@media (min-width: 1024px) {
  .flex-column-md {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .flex-row-md {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  .justify-content-between-md {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .justify-content-center-md {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .align-items-center-md {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
@media (max-width: 767.98px) {
  .container {
    padding-right: 1rem;
    padding-left: 1rem;
  }
}
@media print {
  * {
    background: transparent;
    color: #000000;
    -webkit-box-shadow: none;
            box-shadow: none;
    text-shadow: none;
  }
  a,
  a:visited {
    text-decoration: underline;
  }
  a[href]:after {
    content: " (" attr(href) ")";
  }
  img {
    max-width: 100%;
  }
  @page {
    margin: 0.5cm;
  }
  p,
  h2,
  h3 {
    orphans: 3;
    widows: 3;
  }
  h2,
  h3 {
    page-break-after: avoid;
  }
}
@media (prefers-contrast: more) {
  body {
    font-weight: 600;
  }
  a {
    text-decoration: underline;
  }
}
@media (prefers-reduced-motion: reduce) {
  * {
    -webkit-animation-duration: 0.01ms !important;
            animation-duration: 0.01ms !important;
    -webkit-animation-iteration-count: 1 !important;
            animation-iteration-count: 1 !important;
    -webkit-transition-duration: 0.01ms !important;
            transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
@-webkit-keyframes float-soft {
  0%, 100% {
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
  }
  50% {
    -webkit-transform: translateY(-20px);
            transform: translateY(-20px);
  }
}
@keyframes float-soft {
  0%, 100% {
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
  }
  50% {
    -webkit-transform: translateY(-20px);
            transform: translateY(-20px);
  }
}
@-webkit-keyframes fade-in-up {
  from {
    opacity: 0;
    -webkit-transform: translateY(30px);
            transform: translateY(30px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@keyframes fade-in-up {
  from {
    opacity: 0;
    -webkit-transform: translateY(30px);
            transform: translateY(30px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@-webkit-keyframes slide-in-left {
  from {
    opacity: 0;
    -webkit-transform: translateX(-50px);
            transform: translateX(-50px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
@keyframes slide-in-left {
  from {
    opacity: 0;
    -webkit-transform: translateX(-50px);
            transform: translateX(-50px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
.hero-modern {
  position: relative;
  width: 100%;
  min-height: 600px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  margin-bottom: 0;
}
.hero-modern::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(51, 51, 51, 0.5) 0%, rgba(85, 85, 85, 0.3) 100%);
  z-index: 1;
}
.hero-modern.hero-fullscreen {
  min-height: 100vh;
  height: 100vh;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  z-index: 0;
}

.hero-content-modern {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
}

.hero-text {
  max-width: 700px;
  padding: 40px;
  -webkit-animation: fade-in-up 0.8s ease-out;
          animation: fade-in-up 0.8s ease-out;
}

.hero-title {
  font-size: clamp(32px, 6vw, 56px);
  font-weight: 700;
  color: white;
  margin-bottom: 20px;
  line-height: 1.2;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
  font-size: clamp(16px, 3vw, 24px);
  color: #f0f0f0;
  margin-bottom: 40px;
  font-weight: 300;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.3);
}

.hero-cta-buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-animation: fade-in-up 1s ease-out;
          animation: fade-in-up 1s ease-out;
}

@media (max-width: 768px) {
  .hero-modern {
    min-height: 500px;
  }
  .hero-cta-buttons {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 100%;
  }
  .hero-text {
    padding: 30px 20px;
  }
}
.btn-primary-lg,
.btn-secondary-lg,
.btn-outline,
.btn-donation-lg {
  display: inline-block;
  padding: 16px 32px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  cursor: pointer;
  letter-spacing: 0.5px;
}
.btn-primary-lg:hover,
.btn-secondary-lg:hover,
.btn-outline:hover,
.btn-donation-lg:hover {
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
  -webkit-box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
          box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.btn-yellow {
  background-color: #ffde59;
  color: #333333;
}
.btn-yellow:hover {
  background-color: rgb(255, 211.8614457831, 38);
}

.btn-white {
  background-color: white;
  color: #333333;
  border: 2px solid white;
}
.btn-white:hover {
  background-color: transparent;
  color: white;
}

.btn-outline {
  background-color: transparent;
  color: #333333;
  border: 2px solid #333333;
}
.btn-outline:hover {
  background-color: #333333;
  color: white;
}

.btn-donation-lg {
  background-color: #ffde59;
  color: #333333;
  padding: 18px 40px;
  font-size: 18px;
}

.btn-icon {
  margin-right: 8px;
}

.stats-section-enhanced {
  padding: 100px 20px;
  margin-bottom: 80px;
}

.stats-header-text {
  text-align: center;
  margin-bottom: 60px;
}
.stats-header-text h2 {
  font-size: clamp(28px, 5vw, 42px);
  font-weight: 700;
  color: #333333;
  margin-bottom: 12px;
}
.stats-header-text p {
  font-size: 18px;
  color: #666666;
}

.stats-grid-enhanced {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 28px;
  max-width: 1300px;
  margin: 0 auto;
}
@media (max-width: 1024px) {
  .stats-grid-enhanced {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}
@media (max-width: 768px) {
  .stats-grid-enhanced {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

.stat-item-enhanced {
  background: white;
  padding: 40px 30px;
  border-radius: 12px;
  -webkit-box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
          box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  text-align: center;
  -webkit-transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  -webkit-animation: fade-in-up 0.6s ease-out both;
          animation: fade-in-up 0.6s ease-out both;
  border-top: 4px solid #ffde59;
}
.stat-item-enhanced:nth-child(1) {
  -webkit-animation-delay: 0.08s;
          animation-delay: 0.08s;
}
.stat-item-enhanced:nth-child(2) {
  -webkit-animation-delay: 0.16s;
          animation-delay: 0.16s;
}
.stat-item-enhanced:nth-child(3) {
  -webkit-animation-delay: 0.24s;
          animation-delay: 0.24s;
}
.stat-item-enhanced:nth-child(4) {
  -webkit-animation-delay: 0.32s;
          animation-delay: 0.32s;
}
.stat-item-enhanced:nth-child(5) {
  -webkit-animation-delay: 0.4s;
          animation-delay: 0.4s;
}
.stat-item-enhanced:nth-child(6) {
  -webkit-animation-delay: 0.48s;
          animation-delay: 0.48s;
}
.stat-item-enhanced:hover {
  -webkit-transform: translateY(-8px);
          transform: translateY(-8px);
  -webkit-box-shadow: 0 16px 32px rgba(0, 0, 0, 0.12);
          box-shadow: 0 16px 32px rgba(0, 0, 0, 0.12);
  border-top-color: rgb(255, 206.7921686747, 12.5);
}

.news-section-modern {
  padding: 80px 20px;
  background: white;
}

.news-grid-teaser {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  margin-bottom: 50px;
  max-width: 950px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 768px) {
  .news-grid-teaser {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

.news-teaser-card {
  background: white;
  border-radius: 10px;
  overflow: hidden;
  -webkit-box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
          box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  -webkit-transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  -webkit-animation: fade-in-up 0.6s ease-out;
          animation: fade-in-up 0.6s ease-out;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: 100%;
}
.news-teaser-card:hover {
  -webkit-transform: translateY(-6px);
          transform: translateY(-6px);
  -webkit-box-shadow: 0 12px 28px rgba(0, 0, 0, 0.15);
          box-shadow: 0 12px 28px rgba(0, 0, 0, 0.15);
}
.news-teaser-card:hover .news-teaser-img {
  -webkit-transform: scale(1.08);
          transform: scale(1.08);
}
.news-teaser-card:hover .news-teaser-link {
  gap: 8px;
}

.news-teaser-image-wrapper {
  position: relative;
  width: 100%;
  height: 220px;
  overflow: hidden;
  background: linear-gradient(135deg, #e0e0e0, #f5f5f5);
}

.news-teaser-img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: -webkit-transform 0.4s ease;
  transition: -webkit-transform 0.4s ease;
  transition: transform 0.4s ease;
  transition: transform 0.4s ease, -webkit-transform 0.4s ease;
  display: block;
}

.news-teaser-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(255, 222, 89, 0.1) 0%, rgba(0, 0, 0, 0.08) 100%);
  z-index: 1;
}

.news-teaser-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  background: #ffde59;
  color: #333333;
  padding: 6px 11px;
  border-radius: 6px;
  font-size: 11px;
  font-weight: 700;
  z-index: 2;
  -webkit-box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
          box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.news-teaser-body {
  padding: 24px;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.news-teaser-body h3 {
  font-size: 18px;
  font-weight: 700;
  color: #333333;
  margin-bottom: 10px;
  line-height: 1.3;
  min-height: auto;
}
.news-teaser-body p {
  font-size: 13px;
  color: #666666;
  line-height: 1.5;
  margin-bottom: 12px;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  display: none;
}

.news-teaser-link {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 4px;
  color: #ffde59;
  font-weight: 700;
  text-decoration: none;
  font-size: 13px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.news-teaser-link .news-arrow {
  display: inline-block;
}
.news-teaser-link:hover {
  color: rgb(255, 206.7921686747, 12.5);
}

.news-card-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: #ffde59;
  color: #333333;
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 600;
}

.news-card-body {
  padding: 24px;
}
.news-card-body h3 {
  font-size: 20px;
  font-weight: 700;
  color: #333333;
  margin-bottom: 12px;
  line-height: 1.3;
}
.news-card-body p {
  font-size: 16px;
  color: #666666;
  margin-bottom: 16px;
  line-height: 1.6;
}

.news-link-arrow {
  color: #ffde59;
  font-weight: 600;
  text-decoration: none;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 6px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.news-link-arrow:hover {
  gap: 10px;
}

.news-cta-center {
  text-align: center;
  padding-top: 20px;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}
.section-header h2 {
  font-size: clamp(28px, 5vw, 42px);
  font-weight: 700;
  color: #333333;
  margin-bottom: 12px;
}
.section-header p {
  font-size: 18px;
  color: #666666;
  max-width: 500px;
  margin: 0 auto;
}

.membership-section {
  padding: 80px 20px;
  margin: 80px 0;
}

.membership-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 768px) {
  .membership-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

.membership-text {
  -webkit-animation: slide-in-left 0.7s ease-out;
          animation: slide-in-left 0.7s ease-out;
}
.membership-text h2 {
  font-size: clamp(28px, 5vw, 42px);
  font-weight: 700;
  color: #333333;
  margin-bottom: 20px;
}
.membership-text p {
  font-size: 18px;
  color: #333333;
  margin-bottom: 24px;
  line-height: 1.7;
}

.membership-benefits {
  list-style: none;
  padding: 0;
  margin-bottom: 32px;
}
.membership-benefits li {
  font-size: 17px;
  color: #333333;
  margin-bottom: 12px;
  padding-left: 0;
  font-weight: 500;
}

.membership-cta a {
  display: inline-block;
  background-color: #333333;
  color: white;
  padding: 16px 28px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.membership-cta a:hover {
  background-color: rgb(25.5, 25.5, 25.5);
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
}

.membership-icon {
  text-align: center;
  -webkit-animation: float-soft 4s ease-in-out infinite;
          animation: float-soft 4s ease-in-out infinite;
}
@media (max-width: 768px) {
  .membership-icon {
    -webkit-animation: none;
            animation: none;
  }
}

.donation-section {
  padding: 80px 20px;
  margin: 80px 0;
  text-align: center;
}

.donation-content {
  max-width: 900px;
  margin: 0 auto;
}

.donation-examples {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 24px;
  margin-bottom: 50px;
}
@media (max-width: 768px) {
  .donation-examples {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

.donation-card {
  background: rgba(255, 255, 255, 0.08);
  padding: 30px 20px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.donation-card:hover {
  background: rgba(255, 255, 255, 0.15);
  -webkit-transform: translateY(-4px);
          transform: translateY(-4px);
}

.donation-amount {
  font-size: 32px;
  font-weight: 700;
  color: #ffde59;
  margin-bottom: 10px;
}

.donation-description {
  font-size: 15px;
  color: #d0d0d0;
  line-height: 1.6;
}

.donation-cta a {
  display: inline-block;
}

.about-teaser-section {
  padding: 80px 20px;
}

.about-teaser-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 768px) {
  .about-teaser-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

.about-teaser-text {
  -webkit-animation: slide-in-left 0.7s ease-out;
          animation: slide-in-left 0.7s ease-out;
}
.about-teaser-text h2 {
  font-size: clamp(28px, 5vw, 38px);
  font-weight: 700;
  color: #333333;
  margin-bottom: 20px;
}
.about-teaser-text p {
  font-size: 17px;
  color: #666666;
  margin-bottom: 20px;
  line-height: 1.8;
}
.about-teaser-text a {
  margin-top: 20px;
}

.about-teaser-image {
  -webkit-animation: fade-in-up 0.7s ease-out;
          animation: fade-in-up 0.7s ease-out;
}
.about-teaser-image img {
  width: 100%;
  height: auto;
}

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

.img-fluid {
  max-width: 100%;
  height: auto;
  display: block;
}

.homepage-main {
  background: white;
}

@media (prefers-reduced-motion: reduce) {
  * {
    -webkit-animation-duration: 0.01ms !important;
            animation-duration: 0.01ms !important;
    -webkit-animation-iteration-count: 1 !important;
            animation-iteration-count: 1 !important;
    -webkit-transition-duration: 0.01ms !important;
            transition-duration: 0.01ms !important;
  }
}
.homepage {
  width: 100%;
  max-width: 1920px;
  margin: 0 auto;
  position: relative;
  background: linear-gradient(135deg, #ffde59 0%, #fff3c2 100%);
  background-size: 200% 200%;
  background-attachment: fixed;
}
@media (max-width: 1440px) {
  .homepage {
    background-size: 100% 100%;
    background-attachment: scroll;
  }
}

.hero-section {
  position: relative;
  width: 100%;
  min-height: 600px;
  padding: 3rem 2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
  overflow: hidden;
  background: linear-gradient(135deg, #ffde59 0%, #fff3c2 100%);
}
.hero-section::before {
  content: "";
  position: absolute;
  top: -10%;
  right: -5%;
  width: 500px;
  height: 500px;
  background: rgba(255, 243, 194, 0.3);
  border-radius: 40% 60% 70% 30%/40% 50% 60% 50%;
  z-index: 0;
  -webkit-animation: float-home 12s ease-in-out infinite;
          animation: float-home 12s ease-in-out infinite;
}
.hero-section::after {
  content: "";
  position: absolute;
  bottom: -15%;
  left: -8%;
  width: 450px;
  height: 450px;
  background: rgba(255, 222, 89, 0.25);
  border-radius: 60% 40% 30% 70%/60% 30% 70% 40%;
  z-index: 0;
  -webkit-animation: float-home-reverse 14s ease-in-out infinite;
          animation: float-home-reverse 14s ease-in-out infinite;
}
@media (max-width: 375px) {
  .hero-section {
    min-height: 400px;
    padding: 2rem 1.5rem;
  }
  .hero-section::before {
    width: 300px;
    height: 300px;
    top: -5%;
    right: -10%;
  }
  .hero-section::after {
    width: 280px;
    height: 280px;
    bottom: -10%;
    left: -15%;
  }
}
@media (min-width: 768px) and (max-width: 1024px) {
  .hero-section {
    min-height: 500px;
    padding: 3rem 1.5rem;
  }
}
@media (min-width: 1440px) {
  .hero-section {
    min-height: 700px;
    padding: 4rem 2rem;
  }
}
@media (min-width: 1920px) {
  .hero-section {
    min-height: 800px;
    padding: 5rem 2rem;
  }
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
  -webkit-animation: fade-in-up 0.8s ease-out;
          animation: fade-in-up 0.8s ease-out;
}

.hero-headline {
  font-family: Calibri, "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  font-size: 48px;
  font-weight: 700;
  line-height: 1.2;
  color: #333333;
  margin: 0 0 1.5rem 0;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}
@media (max-width: 375px) {
  .hero-headline {
    font-size: 32px;
    line-height: 1.2;
    margin-bottom: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 1024px) {
  .hero-headline {
    font-size: 40px;
  }
}
@media (min-width: 1440px) {
  .hero-headline {
    font-size: 48px;
  }
}

.hero-description {
  font-family: Calibri, "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.8;
  color: #666666;
  margin: 0 0 2rem 0;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 375px) {
  .hero-description {
    font-size: 16px;
    margin-bottom: 1.5rem;
  }
}
@media (min-width: 768px) and (max-width: 1024px) {
  .hero-description {
    font-size: 18px;
  }
}
@media (min-width: 1440px) {
  .hero-description {
    font-size: 20px;
  }
}

.hero-cta {
  display: inline-block;
  padding: 1rem 2rem;
  background-color: #ffde59;
  color: #333333;
  text-decoration: none;
  border-radius: 1rem;
  font-weight: 700;
  font-size: 18px;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  -webkit-box-shadow: 0 4px 12px rgba(255, 222, 89, 0.3);
          box-shadow: 0 4px 12px rgba(255, 222, 89, 0.3);
  border: 2px solid transparent;
}
.hero-cta:hover {
  background-color: rgb(255, 213.8891566265, 48.2);
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
  -webkit-box-shadow: 0 8px 20px rgba(255, 222, 89, 0.4);
          box-shadow: 0 8px 20px rgba(255, 222, 89, 0.4);
}
.hero-cta:focus {
  outline: none;
  border-color: #333333;
  -webkit-box-shadow: 0 0 0 3px rgba(255, 222, 89, 0.25);
          box-shadow: 0 0 0 3px rgba(255, 222, 89, 0.25);
}
@media (max-width: 375px) {
  .hero-cta {
    padding: 0.5rem 1.5rem;
    font-size: 16px;
  }
}

.news-grid {
  padding: 3rem 2rem;
  position: relative;
}
@media (max-width: 375px) {
  .news-grid {
    padding: 2rem 1.5rem;
  }
}
@media (min-width: 768px) and (max-width: 1024px) {
  .news-grid {
    padding: 3rem 1.5rem;
  }
}

.news-grid-container {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(3, 1fr);
}
@media (max-width: 375px) {
  .news-grid-container {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}
@media (min-width: 768px) and (max-width: 1024px) {
  .news-grid-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}
@media (min-width: 1024px) and (max-width: 1440px) {
  .news-grid-container {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }
}
@media (min-width: 1440px) {
  .news-grid-container {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }
}

.news-card {
  background: #ffffff;
  border-radius: 1rem;
  overflow: hidden;
  -webkit-box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
          box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-animation: card-scale-in 0.6s ease-out;
          animation: card-scale-in 0.6s ease-out;
}
.news-card:hover {
  -webkit-transform: translateY(-8px) scale(1.02);
          transform: translateY(-8px) scale(1.02);
  -webkit-box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.175);
          box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.175);
}
.news-card:focus-within {
  outline: 2px solid #ffde59;
  outline-offset: 2px;
}

.news-card-image {
  position: relative;
  width: 100%;
  height: 250px;
  overflow: hidden;
  background: #f5f5f5;
}
@media (max-width: 375px) {
  .news-card-image {
    height: 200px;
  }
}
@media (min-width: 768px) and (max-width: 1024px) {
  .news-card-image {
    height: 220px;
  }
}
.news-card-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: -webkit-transform 0.5s ease-out;
  transition: -webkit-transform 0.5s ease-out;
  transition: transform 0.5s ease-out;
  transition: transform 0.5s ease-out, -webkit-transform 0.5s ease-out;
}
.news-card-image::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 222, 89, 0)), to(rgba(255, 222, 89, 0.15)));
  background: linear-gradient(180deg, rgba(255, 222, 89, 0) 0%, rgba(255, 222, 89, 0.15) 100%);
  z-index: 2;
}
.news-card:hover .news-card-image img {
  -webkit-transform: scale(1.08);
          transform: scale(1.08);
}

.news-card-meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 1.5rem 1.5rem 0;
  gap: 1rem;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media (max-width: 375px) {
  .news-card-meta {
    padding: 1rem 1.5rem 0;
  }
}

.news-card-date {
  font-family: Calibri, "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: #666666;
}
@media (max-width: 375px) {
  .news-card-date {
    font-size: 14px;
  }
}

.news-card-category {
  display: inline-block;
  background: rgba(255, 222, 89, 0.15);
  color: #333333;
  padding: 0.25rem 1rem;
  border-radius: 0.5rem;
  font-family: Calibri, "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.news-card-category:hover {
  background: rgba(255, 222, 89, 0.25);
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}
.news-card-category:focus {
  outline: 1px solid #ffde59;
  outline-offset: 2px;
}

.news-card-body {
  padding: 1.5rem;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media (max-width: 375px) {
  .news-card-body {
    padding: 1rem;
  }
}

.news-card-title {
  font-family: Calibri, "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.2;
  color: #333333;
  margin: 0 0 1rem 0;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}
.news-card:hover .news-card-title {
  color: #ffde59;
}
@media (max-width: 375px) {
  .news-card-title {
    font-size: 20px;
  }
}
@media (min-width: 768px) and (max-width: 1024px) {
  .news-card-title {
    font-size: 20px;
  }
}

.news-card-excerpt {
  font-family: Calibri, "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  font-size: 18px;
  line-height: 1.8;
  color: #666666;
  margin: 0 0 1.5rem 0;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
@media (max-width: 375px) {
  .news-card-excerpt {
    font-size: 16px;
    margin-bottom: 1rem;
  }
}

.news-card-link {
  display: inline-block;
  color: #ffde59;
  text-decoration: none;
  font-weight: 600;
  font-size: 18px;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  border-bottom: 2px solid transparent;
}
.news-card-link:hover {
  color: rgb(255, 211.8614457831, 38);
  border-bottom-color: #ffde59;
}
.news-card-link:focus {
  outline: 2px solid #ffde59;
  outline-offset: 2px;
}
@media (max-width: 375px) {
  .news-card-link {
    font-size: 16px;
  }
}

.featured-highlights {
  padding: 3rem 2rem;
  position: relative;
  background: rgba(255, 243, 194, 0.3);
}
@media (max-width: 375px) {
  .featured-highlights {
    padding: 2rem 1.5rem;
  }
}
@media (min-width: 768px) and (max-width: 1024px) {
  .featured-highlights {
    padding: 3rem 1.5rem;
  }
}

.featured-container {
  max-width: 1400px;
  margin: 0 auto;
}

.featured-headline {
  font-family: Calibri, "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  font-size: 36px;
  font-weight: 700;
  color: #333333;
  margin: 0 0 2rem 0;
  text-align: center;
}
@media (max-width: 375px) {
  .featured-headline {
    font-size: 28px;
    margin-bottom: 1.5rem;
  }
}
@media (min-width: 768px) and (max-width: 1024px) {
  .featured-headline {
    font-size: 36px;
  }
}

.featured-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}
@media (max-width: 375px) {
  .featured-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}
@media (min-width: 768px) and (max-width: 1024px) {
  .featured-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}
@media (min-width: 1024px) {
  .featured-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}

.featured-item {
  background: #ffffff;
  border-radius: 1rem;
  overflow: hidden;
  -webkit-box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
          box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.featured-item:hover {
  -webkit-box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.175);
          box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.175);
  -webkit-transform: translateY(-4px);
          transform: translateY(-4px);
}
@media (max-width: 375px) {
  .featured-item {
    grid-template-columns: 1fr;
  }
  .featured-item:hover {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@media (min-width: 768px) and (max-width: 1024px) {
  .featured-item {
    grid-template-columns: 1fr;
  }
}
@media (min-width: 1024px) {
  .featured-item {
    grid-template-columns: 1fr 1fr;
  }
}

.featured-image {
  width: 100%;
  height: 100%;
  min-height: 300px;
  overflow: hidden;
  background: #f5f5f5;
}
@media (max-width: 375px) {
  .featured-image {
    min-height: 250px;
  }
}
.featured-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: -webkit-transform 0.5s ease;
  transition: -webkit-transform 0.5s ease;
  transition: transform 0.5s ease;
  transition: transform 0.5s ease, -webkit-transform 0.5s ease;
}
.featured-item:hover .featured-image img {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}

.featured-content {
  padding: 2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media (max-width: 375px) {
  .featured-content {
    padding: 1.5rem;
  }
}

.featured-title {
  font-family: Calibri, "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: #333333;
  margin: 0 0 1rem 0;
}
@media (max-width: 375px) {
  .featured-title {
    font-size: 20px;
  }
}

.featured-description {
  font-family: Calibri, "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  font-size: 18px;
  line-height: 1.8;
  color: #666666;
  margin: 0 0 1.5rem 0;
}
@media (max-width: 375px) {
  .featured-description {
    font-size: 16px;
  }
}

.featured-link {
  display: inline-block;
  color: #ffde59;
  text-decoration: none;
  font-weight: 600;
  font-size: 18px;
  border-bottom: 2px solid transparent;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.featured-link:hover {
  color: rgb(255, 211.8614457831, 38);
  border-bottom-color: #ffde59;
}
.featured-link:focus {
  outline: 2px solid #ffde59;
  outline-offset: 2px;
}
@media (max-width: 375px) {
  .featured-link {
    font-size: 16px;
  }
}

.cta-section {
  position: relative;
  padding: 4rem 2rem;
  background: linear-gradient(135deg, #ffde59 0%, #fff3c2 100%);
  background-size: 200% 200%;
  text-align: center;
  overflow: hidden;
}
@media (max-width: 375px) {
  .cta-section {
    padding: 3rem 1.5rem;
  }
}
@media (min-width: 768px) and (max-width: 1024px) {
  .cta-section {
    padding: 3rem 1.5rem;
  }
}
.cta-section::before {
  content: "";
  position: absolute;
  top: -150px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: rgba(255, 243, 194, 0.2);
  border-radius: 40% 60% 70% 30%/40% 50% 60% 50%;
  z-index: 0;
  -webkit-animation: float-home 15s ease-in-out infinite;
          animation: float-home 15s ease-in-out infinite;
}
.cta-section::after {
  content: "";
  position: absolute;
  bottom: -100px;
  left: -120px;
  width: 350px;
  height: 350px;
  background: rgba(255, 222, 89, 0.15);
  border-radius: 60% 40% 30% 70%/60% 30% 70% 40%;
  z-index: 0;
  -webkit-animation: float-home-reverse 12s ease-in-out infinite;
          animation: float-home-reverse 12s ease-in-out infinite;
}

.cta-container {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.cta-headline {
  font-family: Calibri, "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  font-size: 36px;
  font-weight: 700;
  color: #333333;
  margin: 0 0 1.5rem 0;
}
@media (max-width: 375px) {
  .cta-headline {
    font-size: 28px;
    margin-bottom: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 1024px) {
  .cta-headline {
    font-size: 36px;
  }
}

.cta-text {
  font-family: Calibri, "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  font-size: 20px;
  line-height: 1.8;
  color: #666666;
  margin: 0 0 2rem 0;
}
@media (max-width: 375px) {
  .cta-text {
    font-size: 18px;
    margin-bottom: 1.5rem;
  }
}
@media (min-width: 768px) and (max-width: 1024px) {
  .cta-text {
    font-size: 18px;
  }
}

.cta-button {
  display: inline-block;
  padding: 1rem 2rem;
  background-color: #ffde59;
  color: #333333;
  text-decoration: none;
  border-radius: 1rem;
  font-weight: 700;
  font-size: 18px;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  -webkit-box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
          box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
  border: 2px solid transparent;
  cursor: pointer;
}
.cta-button:hover {
  background-color: rgb(255, 211.8614457831, 38);
  -webkit-transform: translateY(-3px);
          transform: translateY(-3px);
  -webkit-box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
          box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}
.cta-button:focus {
  outline: none;
  border-color: #333333;
  -webkit-box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.1);
          box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.1);
}
@media (max-width: 375px) {
  .cta-button {
    padding: 0.5rem 1.5rem;
    font-size: 16px;
  }
}

.cta-secondary-button {
  display: inline-block;
  margin-left: 1.5rem;
  padding: 1rem 2rem;
  background-color: transparent;
  color: #333333;
  text-decoration: none;
  border-radius: 1rem;
  border: 2px solid #333333;
  font-weight: 700;
  font-size: 18px;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}
.cta-secondary-button:hover {
  background-color: rgba(51, 51, 51, 0.1);
  -webkit-transform: translateY(-3px);
          transform: translateY(-3px);
}
.cta-secondary-button:focus {
  outline: 2px solid #333333;
  outline-offset: 2px;
}
@media (max-width: 375px) {
  .cta-secondary-button {
    display: block;
    margin: 1rem 0 0 0;
    padding: 0.5rem 1.5rem;
    font-size: 16px;
  }
}
@media (min-width: 768px) and (max-width: 1024px) {
  .cta-secondary-button {
    display: block;
    margin: 1rem 0 0 0;
  }
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

.container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}
@media (max-width: 375px) {
  .container {
    padding: 0 1.5rem;
  }
}
@media (min-width: 768px) and (max-width: 1024px) {
  .container {
    padding: 0 1.5rem;
  }
}

@media print {
  .hero-section,
  .news-grid,
  .featured-highlights,
  .cta-section {
    background: #ffffff !important;
    -webkit-box-shadow: none !important;
            box-shadow: none !important;
  }
  .hero-section::before,
  .hero-section::after,
  .cta-section::before,
  .cta-section::after {
    display: none !important;
  }
  .news-card,
  .featured-item {
    page-break-inside: avoid;
    -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
            box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  }
}
footer {
  background: #999;
  font-size: 0.9em;
}
footer .footer-links {
  font-size: 1.2em;
}
footer .footer-links a {
  text-decoration: underline;
}
footer .footer-links {
  padding: 1em 0;
}
footer .footer-content {
  padding: 2em 0;
}
footer .footer-copyright {
  color: white;
}
footer .footer-credit {
  display: inline;
  color: #ffde59;
}
footer .footer-credit:before {
  content: " | ";
  margin: 0 10px;
}
footer .footer-credit a {
  color: #ffde59;
  text-decoration: none;
  font-weight: 500;
}

.standard-article .article-meta {
  display: none;
}

.article-header-image img {
  width: 100%;
}/*# sourceMappingURL=style.css.map */