.col-md-9 {
padding-left: 0px;
;
}

.col-md-3 {
padding: 0px;
;
}

.page-bg {

background-color: rgba(255, 255, 255, 0.85);
background-blend-mode: lighten;
}

.section-bg {
background: rgba(0, 218, 131, 0.06);
}

.tour-tab-title {
  font-weight:800;
  font-size: 25px;
  letter-spacing: -0.5px;
  margin-bottom: 8px;
  position: relative;
  display: inline-block;
  padding-bottom: 10px;
}

/* main animated line */
.tour-tab-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 120px; /* mas mahaba */
  height: 3px;
  background: #ffd166;
  border-radius: 2px;
  animation: slideLine 3s ease-in-out infinite;
}

/* fade extension */
.tour-tab-title::before {
  content: "";
  position: absolute;
  left: 120px; /* dapat match sa width ng after */
  bottom: 1px;
  width: 160px;
  height: 1px;
  background: linear-gradient(to right, #ffd16633, transparent);
}

@keyframes slideLine {
  0% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(25px);
  }
  100% {
    transform: translateX(0);
  }
}



.tour-tab-desc {
  font-size: 17px;
  line-height: 1.6;
  color: #555;
  max-width: 850px;
  margin-top: 6px;
}


/* CSS HERO START */
.heroSwiper .swiper-slide {
  overflow: hidden;
}

.heroSwiper img {
  width: 100%;
  height: 650px;
  object-fit: cover;
  transition: transform 1.5s ease-out;
}

.heroSwiper .swiper-slide-active img {
  transform: scale(1.02) translateY(-10px);
}

  /* Wrapper */
.hero-wrapper {
  position: relative;
}

/* Image */
.hero-img {
  height: 75vh;
  object-fit: cover;
}

/* Gradient */
.full-single-tour-gradient {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 40%;
  background: linear-gradient(to top, rgba(0,0,0,0.7), rgba(0,0,0,0));
  z-index: 1;
}

/* Text container */
.full-single-tour-text {
  position: absolute;
  bottom: 20px;
  left: 30px;
  z-index: 2;
  color: #fff;
}

@media (max-width: 767.98px) {

  .full-single-tour-text {
    bottom: 60px;
  }
}

/* Title */
.full-single-tour-title {
  font-size: 2.5rem;
  margin-bottom: 15px;
  text-shadow: 0 5px 20px rgba(0,0,0,0.7);
}

/* Meta */
.full-single-tour-meta {
  font-size: 1.2rem;
  text-shadow: 0 4px 15px rgba(0,0,0,0.7);
}

.hero-slide-wrapper {
        position: relative;
        width: 100%;
        height: 100%;
    }

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

    .hero-slide-info {
    position: absolute;
    bottom: 10px;
    right: 10px;
    text-align: right;
    color: #fff;
    pointer-events: none;

    padding: 8px 14px;
    border-radius: 8px;
    }

    .hero-slide-info-gray {
        position: absolute;
        bottom: 10px;
        right: 10px;
        text-align: right;
        color: #797979;
        pointer-events: none;

        padding: 8px 14px;
        border-radius: 8px;
    }

    .hero-slide-title {
    font-size: 13px;
    font-weight: 600;
    line-height: 1.2;
    }

    .hero-slide-credit {
    font-size: 5px;
    margin-top: 3px;
    opacity: 0.9;
    }

/* CSS  HERO END */

/* CSS REISE START */

.reise-title {
    font-size: 20px;
}

.reise-desc {
    line-height: 1.8;
    font-size:13px;
}

.highlight-card {
    position: relative; /* needed for overlay */
    border-radius: 1rem;
    overflow: hidden;
  }


  .highlight-image-wrapper {
      position: relative;
      width: 100%;
  }

  .highlight-image-wrapper img {
      width: 100%;
      height: 100%;
      object-fit: cover;
  }

  .highlight-card.horizontal .highlight-image-wrapper {
      flex: 0 0 50%; /* image takes 50% of card width */
      height: 100%;
  }

  .highlight-card.horizontal .card-body {
    flex: 1; /* remaining space */
}

  .highlight-card.horizontal .highlight-image-wrapper img {
      width: 100%;
      height: 100%;
      object-fit: cover;
  }

  .image-author {
      position: absolute;
      bottom: 10px;
      left: 3px;
      color: #ffffff;            /* white text */
      font-size: 4px;
      font-weight: bold;
      writing-mode: vertical-rl;
      text-orientation: mixed;
      transform: rotate(180deg);
      pointer-events: none;
      z-index: 2;
      padding: 0;               /* no overlay background */
  }

    .image-author-gray {
      position: absolute;
      bottom: 10px;
      left: 3px;
      color: #444;            
      font-size: 4px;
      font-weight: bold;
      writing-mode: vertical-rl;
      text-orientation: mixed;
      transform: rotate(180deg);
      pointer-events: none;
      z-index: 2;
      padding: 0;               /* no overlay background */
  }

  /* Default (vertical card, image on top) */
  .highlight-card.vertical img {
    height: 480px;
    width: 100%;
    object-fit: cover;
  }
  

  /* Horizontal card (image on left side) */
  .highlight-card.horizontal img {
    height: 100%;
    width: 55%;
    object-fit: cover;
  }

  .highlight-card .card-body {
    padding: 1.2rem;
  }

  .highlight-card h5 {
    font-weight: bold;
  }

  .highlight-card p {
    margin-bottom: 0;
    font-size: 12px;
  }
@media (max-width: 768px) {


    .highlight-card.vertical img {
        height: 250px;
    }
    /* Make all highlight cards vertical on mobile */
    .highlight-card.horizontal {
        flex-direction: column !important; /* stack image above text */
    }

    .highlight-card.horizontal .highlight-image-wrapper img {
        width: 100%;
        height: 250px;
        object-fit: cover;
    }

    .highlight-card .card-body {
        padding: 1rem;
    }

    .row.align-items-stretch {
        flex-direction: column; /* make the row stack vertically */
    }

    .col-md-6 {
        width: 100%; /* take full width */
    }
}


/* CSS END START */


/* CSS REISEROUTE START */
  .reiseroute-text {
    font-size: 0.85rem;
    line-height: 1.6;
    color: #444;
    text-align: justify;
  }

  .reiseroute-text strong {
    color: #7a5a07;
    /* highlight stops in subtle red */
    font-weight: 600;
  }

    .timeline-step {
        flex: 1 1 auto;
        min-width: 80px;
    }

    .timeline-step h4 {
        font-size: 14px;
    }
    .timeline-step p {
        font-size: 12px;
    }

    .timeline-icon {
        width: 35px;
        height: 35px;
        margin: 0 auto;
        line-height: 50px;
    }

    .fa-icon-size {
        font-size: 25px;
    }

    .timeline-arrow {
        flex: 0 0 auto;
    }

    @media (max-width: 767.98px) {

        .highlight-card img {
            height: 230px;
        }

        .highlight-card::before {
            font-size: 9px;
        }

        .timeline {
            gap: 0;
        }

        .timeline-step {
            margin-bottom: 0;
        }

        .timeline-arrow {
            margin: 20px 0;
        }
    }


/* CSS REISEROUTE END */


/* CSS PROGRAMM START */


.itenarary-timeline {
  border: 2px solid #B8860B;      /* main border color */
  border-radius: 12px;              /* rounded corners */
  background: #ffffff;              /* background inside the border */
  box-shadow: 0 8px 20px rgba(32, 123, 131, 0.2); /* subtle shadow */
  position: relative;
  overflow: hidden;
}

.hero-wrapper-itenerary {
  position: relative;
  display: inline-block;
  width: 100%; /* make container full width */
  max-width: 100%; /* prevent overflow */
}

.itenerary-photo {
  width: 100%;      /* make the image scale with the container */
  height: 380px;     /* maintain aspect ratio */
  display: block;
  max-width: 925px; /* optional: cap the maximum size */
}

.itenerary-photo-text {
  position: absolute;
  bottom: 5px;
  right: 5px;
  color: #fff;
  text-align: right;
  pointer-events: none;

  padding: 5px 10px;
  border-radius: 5px;
}

.itenerary-photo-title {
  font-size: 11px; /* bigger font for title */
  font-weight: bold;
  line-height: 1.2;
}

.itenerary-photo-author {
  font-size: 5px; /* small font for attribution */
  margin-top: 2px;
}


  /* Day navigation wrapper */
  .day-nav-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 20px;
    padding-left: 20px;
    padding-right: 20px;
  }

  /* Horizontal scroll for days */
  .day-nav {
    display: flex;
    overflow-x: auto;
    flex-wrap: nowrap;
    align-items: center;

    scrollbar-width: none;
    -ms-overflow-style: none;
  }

  .day-nav::-webkit-scrollbar {
    display: none;
  }

  .day-nav .day-strip {
    display: flex;
    flex-wrap: nowrap;
    padding: 0 20px;
    gap: 30px;
    min-width: max-content;
    position: relative;
  }

  /* Full connecting line behind all buttons */
  .day-nav .day-strip::before {
    content: "";
    position: absolute;
    top: 20px;
    left: 0;
    right: 0;
    height: 2px;
    background: #B8860B;
    z-index: 0;
  }

  .day-nav .day-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex-shrink: 0;
    z-index: 1;
  }

  /* Day buttons */
  .day-nav button.day-btn {
    border-radius: 50%;
    width: 40px;
    height: 40px;
    border: none;
    background: #f0f0f0;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    display: block;
    margin: 0 auto;
  }

  .day-nav button.day-btn.active {
    background: #B8860B;
    /* dark gold */
    color: #fff;
  }

  /* Labels & city names */
  .day-label {
    margin-top: 5px;
    font-size: 0.8rem;
    font-weight: 600;
    white-space: nowrap;
  }

  .day-city {
    font-size: 0.68rem;
    color: black;
    white-space: normal;
    word-break: break-word;
    max-width: 80px;
  }

  /* Day content */
  .day-content {
    display: none;
    padding: 20px;
  }

  .day-content.active {
    display: block;
  }

  .day-content h5 {
    font-weight: bold;
    border-bottom: 2px solid #B8860B;
    padding-bottom: 10px;
    margin-bottom: 10px;
  }

  .str.lora-text {
    font-size: 15px;
  }

  /* prev-itenarary/next-itenarary buttons */
  .scroll-btn {
    position: relative;
    top: -38px;
    border: none;
    background: #B8860B;
    color: white;
    border-radius: 20px;
    padding: 5px 12px;
    cursor: pointer;
    font-size: 0.9rem;
  }

  .scroll-btn:hover {
    background: #8B6508;
    /* slightly darker gold for hover */
  }

  /* OPTIONAL: further scaling for very small screens */
@media (max-width: 768px) {

  .itenerary-photo {
    height: 230px;     /* maintain aspect ratio */
  }
  .itenerary-photo-title {
    font-size: 8px;
  }

  .itenerary-photo-author {
    font-size: 4px;
  }

}

.btn-programm {
  font-weight: 700;
  background-color: #b8860b; /* dark gold */
  color: white; /* dark brown */
  border-radius: 8px;
  border: none;
  padding: 10px 18px;
  margin-bottom: 20px;
  transition: all 0.3s ease;
}

@media (max-width: 576px) {
  .btn-programm {
    font-size: 13px;
    padding: 6px 12px;
    border-radius: 6px;
    margin-bottom: 15px;
  }
}

.btn-programm:hover {
  background-color: #bb973b; /* slightly lighter on hover */
}

.programm-arrow-icon {

  color: #b8860b; /* dark gold */
}

.programm-card-bg {

  border: 0.5px solid #bda770; /* dark gold */
}

.nopadding {
    padding: 2px !important;
    margin: 0 !important;
}

.solo-big-image {
    height: 380px; 
    border-radius: 5px;
    transition: opacity 0.3s ease-in-out;
}

.big-image {
    cursor: pointer;
    height: 350px; 
    border-radius: 5px;
    transition: opacity 0.3s ease-in-out;
}

.small-image {
    cursor: pointer;
    width: 285px;;
    height: 172px; 
    border-radius: 5px;
    transition: opacity 0.3s ease-in-out;
}

@media (max-width: 768px) {

  .solo-big-image {
    height: 230px; 
  }

  .big-image {
    height: 230px; 
  }

}

@media (max-width: 767.98px) {

  .col-md-4.nopadding {
    display: flex;
    gap: 4px; /* space between images */
  }

  .col-md-4.nopadding .img-wrap-new {
    flex: 1; /* pantay sila */
  }

  .small-image {
    width: 100%;
    height: 135px; /* pwede mo adjust */
  }

}

.img-wrap-new {
    position: relative;
}

.img-author-new {
    position: absolute;
    bottom: 8px;
    left: 3px;
    color: #ffffff;
    font-size: 4px;
    writing-mode: vertical-rl;
    text-orientation: mixed;
    transform: rotate(180deg);
    pointer-events: none;
    z-index: 5;
}

.img-author-new.gray {
    color: #444;
}

/* CSS PROGRAMM END */


/* CSS Leistungen START */

  /* Container */
  .leistungen-row {
    background-color: #fff;
    padding: 2rem 1rem;
    margin-bottom: 3rem;
  }

  /* Section title */
  .leistungen-title {
    font-weight: bold;
    text-align: center;
    margin-bottom: 2rem;
    color: #b8860b;
  }

  /* Cards */
  .leistungen-card {
    border: 1px solid #b8860b;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(184, 134, 11, 0.1);
    margin-bottom: 2rem;
    overflow: hidden;
  }

  .leistungen-card-header {
    background-color: #b8860b;
    color: #fff;
    padding: 0.75rem 1rem;
    font-weight: bold;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .leistungen-card-header i {
    margin-right: 0.5rem;
  }

  .leistungen-card-body {
    padding: 1rem;
  }

  .leistungen-card-body h5 {
    font-weight: bold;
    margin-bottom: 1rem;
    color: #b8860b;
  }

  /* Replace list bullets with stars */
  .leistungen-card-body ul {
    list-style: none;
    /* remove default bullets */
    padding-left: 0;
  }

  .leistungen-card-body ul li {
    position: relative;
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    /* space for star */
    font-size: 0.90rem;
    line-height: 1.45;
  }

  /* Add star before each li */
  .leistungen-card-body ul li::before {
    content: "★";
    position: absolute;
    left: 0;
    color: #b8860b;
    /* darkgold star */
    font-size: 1rem;
    line-height: 1;
  }


  /* Multi-column list for desktop */
  .leistungen-multi-column {
    column-count: 2;
    column-gap: 2rem;
  }

  /* Alert / Info */
  .leistungen-alert {
    border: 1px solid rgba(0, 0, 0, .125);
    color: black;
    background-color: #f8f9fa;
    padding: 1rem;
    border-radius: 8px;
  }

  /* ======================
   Mobile collapsible
====================== */
  @media (max-width: 767px) {

    .leistungen-row {
      padding: 2rem 0.3rem;
    }

    .leistungen-multi-column {
      column-count: 1;
    }

    .leistungen-card {
      margin-bottom: 1rem;
    }
  }

/* CSS Leistungen END */


/* CSS Termine & Preise START */

  .btn-anmeldung {
    display: inline-block;
    width: auto;
    /* auto on desktop */
    max-width: 100%;
    /* fits mobile */
    padding: 8px 28px;
    font-size: 1.05rem;
    font-weight: 600;
    background-color: #b8860b;
    color: #fff;
    border: none;
    border-radius: .3rem;
    text-decoration: none;
    white-space: normal;
    /* text can wrap if too long */
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
  }

  .btn-anmeldung:hover {
    background-color: #bb973b;
    color: white;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
  }

  .btn-anmeldung:active {
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.2);
  }

  /* Extra for mobile screens */
  @media (max-width: 576px) {
    .btn-anmeldung {
      display: block;
      width: 100%;
      /* full width on small screens */
      font-size: 1rem;
      padding: 8px 20px;
    }
  }

  .termine-card {
    padding: 1.5rem;
    margin-bottom: 1.5rem;
  }

  .termine-card h3 {
    font-weight: 600;
    font-size: 1.2rem;
    color: #b1b407;
    margin-bottom: 1rem;
  }

  .termine-card:hover {
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
  }

  @media (max-width: 576px) {
    .termine-card {
      padding: 1rem;
    }
  }

/* CSS Termine & Preise END */


/* CSS Wichtige Hinweise START */

.simple-accordion {
  list-style: none;
  padding: 0;
  margin: 0;
}

.simple-accordion .card {
  border: none;
  border-radius: 14px;
  background: #fdf7ed; /* soft cream background for card */
  box-shadow: 0 4px 10px rgba(0,0,0,0.08);
  margin-bottom: 6px;
  transition: transform .3s, box-shadow .3s;
}
.simple-accordion .card:hover {
  box-shadow: 0 6px 16px rgba(0,0,0,0.12);
}

.simple-accordion button {
  background: #b8860b; /* dark muted gold */
  border: none;
  font-size: 15px;
  font-weight: 600;
  width: 100%;
  text-align: left;
  padding: 12px 16px;
  color: white; /* dark brown text */
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background 0.3s, color 0.3s;
  border-radius: 12px;
}

.simple-accordion button:hover {
  background: #bb973b; /* slightly lighter dark gold */
}

.simple-accordion button:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(191, 163, 107, 0.4);
}

/* Chevron rotation */
.simple-accordion button .chevron {
  transition: transform 0.3s ease;
  color: white; /* matches button text */
}
.simple-accordion button[aria-expanded="true"] .chevron {
  transform: rotate(90deg);
}

.simple-accordion .accordion-body {
  padding: 18px;
  color: #3b2f1b; /* dark brown text */
  line-height: 1.7;
  background: #fdf7ed; /* same as card */
  border-top: 1px solid #d8c08d; /* subtle gold border */
}

/* ===== Show/Hide Button ===== */
#toggleAllBtn2 {
  font-weight: 700;
  background-color: #b8860b; /* dark gold */
  color: white; /* dark brown */
  border-radius: 8px;
  border: none;
  padding: 10px 18px;
  margin-bottom: 20px;
  transition: all 0.3s ease;
}
#toggleAllBtn2:hover {
  background-color: #bb973b; /* slightly lighter on hover */
}


.btn-vormerkung {
  font-weight: 700;
  background-color: #b8860b; /* dark gold */
  color: white; /* dark brown */
  border-radius: 8px;
  border: none;
  padding: 10px 18px;
  margin-bottom: 20px;
  transition: all 0.3s ease;
}
.btn-vormerkung:hover {
  background-color: #bb973b; /* slightly lighter on hover */
}


/* CSS Weitere  START */

.side-cont {
position: sticky !important;
top: 0px;
}

.sidebar-box {
padding: 20px;
border: 1px solid #e9ecef;
background: #fff;
box-shadow: 0 4px 12px rgba(32, 123, 131, 0.08);
}

.sidebar-title {
font-size: 1.2rem;
font-weight: 600;
color: black;
margin-bottom: 15px;
border-bottom: 2px solid #B8860B;
display: inline-block;
padding-bottom: 4px;
}

.sidebar-btn {
display: block;
padding: 10px;
margin-bottom: 10px;
text-align: center;
background: #b8860b;
border-radius: 8px;
color: white;
font-weight: 500;
text-decoration: none;
transition: all 0.3s ease;
}

.sidebar-btn:hover {
background: #bb973b;
color: #fff;
}

.sidebar-text {
font-size: 0.9rem;
line-height: 1.4;
color: #333;
}

.sidebar-main-btn {
display: block;
padding: 10px;
background: #b8860b;
color: #fff;
border-radius: 8px;
font-weight: 600;
text-decoration: none;
transition: background 0.3s ease;
}

.sidebar-main-btn:hover {
background: #bb973b;
color: #fff;
}

.text-accent {
color: #b8860b;
}

/* CSS Weitere  END */


.carousel-container {
    position: relative;
    width: 100%;
    height: 300px;
    overflow: hidden;
    border-radius: 0.75rem;
}

.carousel-slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.carousel-slide.active {
    opacity: 1;
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0.75rem;
}

.lh-lg {
    line-height: 2;
}

.trip-subtitle {
    background-color: white;
    font-size: 1.2rem;
    font-weight: 500;
    padding: 10px 0;
}

.star-rating {
    color: #ffc107; /* yellow star */
}

.review-count {
    color: #6c757d; /* muted text */
    font-size: 0.95rem;
}

.info-box {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.info-item {
    display: flex;
    align-items: center;
}

.ms-1 {
    margin-left: 0.25rem;
}

.sticky-nav {
    position: sticky;
    top: 0;
    z-index: 99;
    border-bottom: 1px solid #b8860b; /* dark gold */
    background-color: #b8860b;       /* dark gold */
    color: white;
    font-weight: 600;  
}

.sticky-nav.scrolled {
    background-color: #b8860b;       /* dark gold */
    color: white;
}

.scroll-nav-wrapper {
    overflow-x: auto;
    white-space: nowrap;
}

.scroll-nav {
    display: inline-flex;
    gap: 2.5rem;
    font-size: 20px;
}

.scroll-nav .nav-link {
    white-space: nowrap;
}

.scroll-container {
    display: flex;
    justify-content: center;
}

.active-link {
    font-weight: 700;
    text-decoration: none;
    border-bottom: 5px solid white; 
    color: #fff8dc;
    transition: all 0.3s ease-in-out;
}

.content-block {
    scroll-margin-top: 100px; /* Adjust to match your navbar height */
    border-bottom: 1px solid #eee;
}

.circle-day {
    display: inline-flex;
    width: 40px;
    height: 40px;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    background-color: #b8860b; /* dark gold */
    color: white;
    font-weight: bold;
    margin-right: 15px;
    font-size: 0.7rem;
    flex-shrink: 0;
}

.day-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    font-size: 0.9rem;
}

.inclusion-title {
    font-weight: bold;
    margin-top: 1rem;
    border-bottom: 1px solid #eee;
    padding-bottom: 0.5rem;
}

.inclusion-icon {
    color: #b8860b; /* dark gold */
    margin-right: 1px;
    width: 20px;
}

.kontakt-title{
    font-size: 2rem;
    font-weight: 800;
}

@media (min-width: 768px) {
    .border-start-md {
        border-left: 1px solid #dee2e6; /* Bootstrap's $gray-200 */
    }
}

@media (max-width: 768px) {
    .content-block {
        scroll-margin-top: 110px; /* Adjust to match your navbar height */
    }
    .scroll-nav {
        gap: 0.1rem;
        font-size: 13px;
    }

    .sticky-nav {
        border: 1px solid #b8860b; /* dark gold */
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    }

    .nav-link {
        padding-left: 5px;
        padding-right: 5px;
        margin-top: 5px;
        margin-bottom: 5px;
    }
}

@media (max-width: 849px) {
    .content-block {
        scroll-margin-top: 110px; /* Adjust to match your navbar height */
    }
    .scroll-nav {
        gap: 0.1rem;
        font-size: 13px;
    }

    .nav-link {
        padding-left: 5px;
        padding-right: 5px;
        margin-top: 5px;
        margin-bottom: 5px;
    }
}

@media (max-width: 412px) {
    .nav-link {
        font-size: 12px;
        padding-left: 3px;
        padding-right: 3px;
        margin-top: 5px;
        margin-bottom: 5px;
    }
}

@media (min-width: 1024px) {
    .reisevideo-frame {
        padding-top: 1rem;
        padding-bottom: 1rem;
        padding-left: 3rem;
        padding-right: 3rem;
    }
}
