@charset "UTF-8";
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Futura", "Futura Std", "Futura-Std", "Trebuchet MS", Arial, sans-serif;
  background-color: #ffffff;
  color: #000000;
  overflow-x: hidden;
  margin: 0;
  padding: 0;
}

@media (min-height: 1200px) {
  body {
    height: 100vh;
    overflow: hidden;
  }

  .main-container {
    height: 100vh;
    display: flex;
    flex-direction: column;
  }

  .content-area {
    flex: 1;
    overflow-y: auto;
    overflow-x: hidden;
    min-height: 0;
  }

  .content-area.text-content {
    padding: 20px;
  }
}
@media (max-height: 1199px) {
  body {
    min-height: 100vh;
  }

  .main-container {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
  }

  .content-area {
    flex: 1;
    padding: 20px;
  }
}
.main-container {
  position: relative;
}

.content-area {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  box-sizing: border-box;
}

.header {
  background: #000000;
  color: #ffffff;
  padding: 20px 0;
  z-index: 100;
  text-align: center;
  position: relative;
  flex-shrink: 0;
}
.header .site-title {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-size: 24px;
  font-weight: normal;
  color: #ffffff;
  text-decoration: none;
  letter-spacing: 1px;
  transition: opacity 0.3s ease;
  position: relative;
  z-index: 2;
  font-family: "Futura", "Futura Std", "Futura-Std", "Trebuchet MS", Arial, sans-serif;
}
.header .site-title span {
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
}
.header .site-title img {
  display: block;
  max-width: 250px;
  width: 100%;
}
.header .site-title:hover {
  opacity: 0.8;
}

@media (min-width: 1800px) {
  .desktop-navigation {
    position: fixed;
    left: 40px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 200;
  }
  .desktop-navigation .nav-item {
    display: block;
    padding: 15px 0;
    color: #000000;
    text-decoration: none;
    transition: all 0.2s ease;
    margin-bottom: 8px;
    font-size: 16px;
    letter-spacing: 1px;
    text-transform: uppercase;
    opacity: 0.7;
  }
  .desktop-navigation .nav-item:last-child {
    margin-bottom: 0;
  }
  .desktop-navigation .nav-item:hover {
    opacity: 1;
    transform: translateX(8px);
    color: #333333;
  }
  .desktop-navigation .nav-item.active {
    opacity: 1;
    font-weight: bold;
    color: #000000;
    border-left: 3px solid #000000;
    padding-left: 15px;
  }

  .hamburger-menu {
    display: none;
  }

  .navigation-menu {
    display: none;
  }

  .content-area {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 240px 0 60px;
  }
}
@media (max-width: 1799px) {
  .desktop-navigation {
    display: none;
  }

  .content-area {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
  }
}
.hamburger-menu {
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 200;
  cursor: pointer;
  padding: 10px;
  transition: transform 0.3s ease;
}
.hamburger-menu:hover {
  transform: scale(1.05);
}
.hamburger-menu .hamburger-lines {
  width: 30px;
  height: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.hamburger-menu .hamburger-lines .hamburger-line {
  width: 100%;
  height: 2px;
  background-color: #ffffff;
  transition: all 0.3s ease;
  transform-origin: center;
}
.hamburger-menu .hamburger-lines .hamburger-line:nth-child(1) {
  transform-origin: top left;
}
.hamburger-menu .hamburger-lines .hamburger-line:nth-child(4) {
  transform-origin: bottom left;
}
.hamburger-menu.active .hamburger-line:nth-child(1) {
  transform: rotate(45deg) translate(3px, 3px);
}
.hamburger-menu.active .hamburger-line:nth-child(2), .hamburger-menu.active .hamburger-line:nth-child(3) {
  opacity: 0;
  transform: scaleX(0);
}
.hamburger-menu.active .hamburger-line:nth-child(4) {
  transform: rotate(-45deg) translate(3px, -3px);
}

.navigation-menu {
  position: absolute;
  top: 60px;
  right: 20px;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid #dddddd;
  border-radius: 5px;
  padding: 15px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  z-index: 150;
  min-width: 180px;
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}
.navigation-menu.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.navigation-menu .nav-item {
  display: block;
  padding: 12px 15px;
  color: #000000;
  text-decoration: none;
  border-bottom: 1px solid #eeeeee;
  transition: all 0.2s ease;
  border-radius: 3px;
  margin-bottom: 2px;
}
.navigation-menu .nav-item:last-child {
  border-bottom: none;
  margin-bottom: 0;
}
.navigation-menu .nav-item:hover, .navigation-menu .nav-item.active {
  background-color: #f5f5f5;
  transform: translateX(5px);
}
.navigation-menu .nav-item.active {
  font-weight: bold;
  background-color: #f0f0f0;
}

.nav-arrows {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  display: flex;
  justify-content: space-between;
  pointer-events: none;
  z-index: 50;
  padding: 0 20px;
}
.nav-arrows .nav-arrow {
  border: none;
  background: none;
  cursor: pointer;
  outline: none;
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.8);
  color: #000000;
  font-size: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  pointer-events: all;
  opacity: 0.7;
  backdrop-filter: blur(5px);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  text-decoration: none;
}
.nav-arrows .nav-arrow:hover {
  opacity: 1;
  background: rgba(255, 255, 255, 0.95);
  transform: scale(1.1);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}
.nav-arrows .nav-arrow.disabled {
  opacity: 0.3;
  cursor: not-allowed;
  pointer-events: none;
}
@media (min-width: 1800px) {
  .nav-arrows {
    max-width: 1300px;
    padding: 0 100px;
  }
}
@media (max-width: 1799px) {
  .nav-arrows {
    max-width: 1000px;
    padding: 0 40px;
  }
}
@media (max-width: 768px) {
  .nav-arrows {
    padding: 0 20px;
  }
  .nav-arrows .nav-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
  }
  .nav-arrows .nav-arrow.nav-prev {
    left: 20px;
  }
  .nav-arrows .nav-arrow.nav-next {
    right: 20px;
  }
}

@media (min-height: 1000px) {
  .content-area.text-content {
    flex: 1;
    overflow-y: auto;
    overflow-x: hidden;
    padding: 40px 20px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
  }
  .content-area.text-content::-webkit-scrollbar {
    width: 8px;
  }
  .content-area.text-content::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.1);
    border-radius: 4px;
  }
  .content-area.text-content::-webkit-scrollbar-thumb {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 4px;
    transition: background 0.3s ease;
  }
  .content-area.text-content::-webkit-scrollbar-thumb:hover {
    background: rgba(0, 0, 0, 0.5);
  }
}
@media (max-height: 999px) {
  .content-area.text-content {
    flex: 1;
    padding: 40px 20px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
  }
}
.content-single {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  animation: fadeInUp 0.6s ease-out;
}
.content-single h1 {
  font-size: 32px;
  margin-bottom: 30px;
  font-weight: normal;
  letter-spacing: 1px;
  line-height: 1.2;
}
.content-single .content-image {
  margin: 30px 0;
  border-radius: 5px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}
.content-single .content-image img {
  max-width: 100%;
  height: auto;
  display: block;
  transition: transform 0.3s ease;
}
.content-single .content-image img:hover {
  transform: scale(1.05);
}
.content-single .content-text {
  font-size: 16px;
  line-height: 1.8;
  text-align: left;
  color: #000000;
}
.content-single .content-text p {
  margin-bottom: 1.2em;
}
.content-single .content-text p:last-child {
  margin-bottom: 0;
}

.content-overview {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  animation: fadeInUp 0.6s ease-out;
  width: 100%;
  box-sizing: border-box;
}
@media (max-height: 899px) {
  .content-overview {
    gap: 20px;
    margin-top: 20px;
  }
}
@media (max-width: 768px) {
  .content-overview {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}
.content-overview .content-item {
  text-align: center;
  padding: 20px;
  border-radius: 8px;
  transition: all 0.3s ease;
  background: rgba(255, 255, 255, 0.5);
  border: 1px solid transparent;
  height: fit-content;
}
@media (max-height: 899px) {
  .content-overview .content-item {
    padding: 15px;
  }
}
.content-overview .content-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  border-color: #dddddd;
}
.content-overview .content-item a {
  text-decoration: none;
  color: inherit;
  display: block;
}
.content-overview .content-item .content-image {
  margin-bottom: 15px;
  border-radius: 5px;
  overflow: hidden;
}
.content-overview .content-item .content-image img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.content-overview .content-item:hover .content-image img {
  transform: scale(1.1);
}
.content-overview .content-item h2 {
  font-size: 24px;
  margin: 15px 0;
  font-weight: normal;
  letter-spacing: 0.5px;
  line-height: 1.3;
}
.content-overview .content-item .content-preview {
  font-size: 14px;
  color: #666666;
  line-height: 1.6;
  text-align: justify;
}
.content-overview .content-item .content-text {
  font-size: 16px;
  line-height: 1.8;
  text-align: left;
  color: #000000;
}
.content-overview .content-item .content-text p {
  margin-bottom: 1.2em;
}
.content-overview .content-item .content-text p:last-child {
  margin-bottom: 0;
}
.content-overview .content-item-static:hover {
  transform: none !important;
  box-shadow: none !important;
  border-color: transparent !important;
}
.content-overview .content-item-static:hover .content-image img {
  transform: none !important;
}

.no-content {
  text-align: center;
  font-size: 18px;
  color: #666666;
  padding: 50px 20px;
}
.no-content::before {
  content: "📷";
  font-size: 48px;
  display: block;
  margin-bottom: 20px;
  opacity: 0.5;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.content-loading {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 40vh;
  flex-direction: column;
  color: #666666;
}
.content-loading .loading-spinner {
  width: 40px;
  height: 40px;
  border: 3px solid #dddddd;
  border-top: 3px solid #000000;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin-bottom: 20px;
}
.content-loading .loading-text {
  font-size: 16px;
}

.content-area {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 20px;
  position: relative;
  min-height: 0;
  overflow: hidden;
}

.gallery-carousel {
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
@media (min-height: 1000px) and (max-height: 1199px) {
  .gallery-carousel {
    max-height: calc(100vh - 100px);
  }
}
@media (min-height: 1200px) {
  .gallery-carousel {
    max-height: 80vh;
    height: auto;
  }
}
@media (min-height: 1400px) {
  .gallery-carousel {
    max-height: 75vh;
  }
}
@media (min-height: 1600px) {
  .gallery-carousel {
    max-height: 70vh;
  }
}
.gallery-carousel .gallery-item {
  position: relative;
  cursor: pointer;
  overflow: hidden;
  border-radius: 3px;
  transition: transform 0.3s ease;
  text-align: center;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.gallery-carousel .gallery-item:hover {
  transform: scale(1.02);
}
.gallery-carousel .gallery-item img {
  width: 100%;
  height: auto;
  max-height: calc(100vh - 200px);
  object-fit: contain;
  display: block;
  transition: filter 0.3s ease;
  flex: 1;
}
@media (min-height: 1200px) {
  .gallery-carousel .gallery-item img {
    max-height: 60vh;
  }
}
@media (min-height: 1400px) {
  .gallery-carousel .gallery-item img {
    max-height: 55vh;
  }
}
@media (min-height: 1600px) {
  .gallery-carousel .gallery-item img {
    max-height: 50vh;
  }
}
@media (min-height: 1000px) and (max-height: 1199px) {
  .gallery-carousel .gallery-item img {
    max-height: calc(100vh - 250px);
  }
}
@media (max-height: 999px) {
  .gallery-carousel .gallery-item img {
    max-height: calc(100vh - 180px);
  }
}
@media (max-height: 900px) {
  .gallery-carousel .gallery-item img {
    max-height: calc(100vh - 160px);
  }
}
@media (max-height: 800px) {
  .gallery-carousel .gallery-item img {
    max-height: calc(100vh - 140px);
  }
}
@media (max-height: 700px) {
  .gallery-carousel .gallery-item img {
    max-height: calc(100vh - 120px);
  }
}
@media (max-height: 600px) {
  .gallery-carousel .gallery-item img {
    max-height: calc(100vh - 100px);
  }
}
@media (max-height: 500px) {
  .gallery-carousel .gallery-item img {
    max-height: calc(100vh - 80px);
  }
}
@media (max-height: 400px) {
  .gallery-carousel .gallery-item img {
    max-height: calc(100vh - 60px);
  }
}
.gallery-carousel .gallery-item .image-info {
  padding: 15px 20px;
  text-align: center;
  background: rgba(255, 255, 255, 0.95);
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
}
@media (max-height: 700px) {
  .gallery-carousel .gallery-item .image-info {
    padding: 10px 15px;
  }
}
@media (max-height: 600px) {
  .gallery-carousel .gallery-item .image-info {
    padding: 8px 12px;
  }
}
@media (max-height: 500px) {
  .gallery-carousel .gallery-item .image-info {
    padding: 6px 10px;
  }
}
@media (max-height: 400px) {
  .gallery-carousel .gallery-item .image-info {
    padding: 4px 8px;
  }
}
.gallery-carousel .gallery-item .image-info .image-meta {
  font-size: 14px;
  color: #666666;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  width: 100%;
}
@media (max-height: 800px) {
  .gallery-carousel .gallery-item .image-info .image-meta {
    font-size: 12px;
    gap: 30px;
  }
}
@media (max-height: 700px) {
  .gallery-carousel .gallery-item .image-info .image-meta {
    font-size: 11px;
    gap: 25px;
  }
}
@media (max-height: 600px) {
  .gallery-carousel .gallery-item .image-info .image-meta {
    font-size: 10px;
    gap: 20px;
  }
}
@media (max-height: 500px) {
  .gallery-carousel .gallery-item .image-info .image-meta {
    font-size: 9px;
    gap: 15px;
  }
}
@media (max-height: 400px) {
  .gallery-carousel .gallery-item .image-info .image-meta {
    font-size: 8px;
    gap: 10px;
  }
}
@media (max-width: 768px) {
  .gallery-carousel .gallery-item .image-info .image-meta {
    flex-direction: column;
    gap: 5px;
  }
}
.gallery-carousel .gallery-item .image-info .image-meta .title {
  font-size: 16px;
  font-weight: bold;
  color: #000000;
  text-transform: uppercase;
  letter-spacing: 1px;
  flex: 0 0 auto;
  text-align: center;
}
@media (max-height: 800px) {
  .gallery-carousel .gallery-item .image-info .image-meta .title {
    font-size: 14px;
  }
}
@media (max-height: 700px) {
  .gallery-carousel .gallery-item .image-info .image-meta .title {
    font-size: 13px;
  }
}
@media (max-height: 600px) {
  .gallery-carousel .gallery-item .image-info .image-meta .title {
    font-size: 12px;
  }
}
@media (max-height: 500px) {
  .gallery-carousel .gallery-item .image-info .image-meta .title {
    font-size: 11px;
  }
}
@media (max-height: 400px) {
  .gallery-carousel .gallery-item .image-info .image-meta .title {
    font-size: 10px;
  }
}
.gallery-carousel .gallery-item .image-info .image-meta .location,
.gallery-carousel .gallery-item .image-info .image-meta .year {
  font-style: italic;
  text-transform: uppercase;
  letter-spacing: 1px;
  flex: 0 0 auto;
  text-align: center;
}

.owl-nav {
  display: none !important;
}

.owl-dots {
  text-align: center;
  margin-top: 10px;
  flex-shrink: 0;
}
@media (max-height: 800px) {
  .owl-dots {
    margin-top: 8px;
  }
}
@media (max-height: 700px) {
  .owl-dots {
    margin-top: 6px;
  }
}
@media (max-height: 600px) {
  .owl-dots {
    margin-top: 5px;
  }
}
@media (max-height: 500px) {
  .owl-dots {
    margin-top: 3px;
  }
}
.owl-dots .owl-dot {
  display: inline-block;
  width: 14px;
  height: 14px;
  margin: 0 6px;
  background: transparent !important;
  border: 2px solid rgba(0, 0, 0, 0.4) !important;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
}
@media (max-height: 600px) {
  .owl-dots .owl-dot {
    width: 12px;
    height: 12px;
    margin: 0 4px;
  }
}
@media (max-height: 500px) {
  .owl-dots .owl-dot {
    width: 10px;
    height: 10px;
    margin: 0 3px;
  }
}
.owl-dots .owl-dot:hover {
  background: rgba(0, 0, 0, 0.5) !important;
  border-color: rgba(0, 0, 0, 0.7) !important;
  transform: scale(1.1);
}
.owl-dots .owl-dot.active {
  background: rgba(0, 0, 0, 0.9) !important;
  border-color: black !important;
  transform: scale(1.2);
}

.gallery-loading {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 60vh;
  font-size: 18px;
  color: #666666;
}
.gallery-loading::after {
  content: "";
  width: 20px;
  height: 20px;
  border: 2px solid #dddddd;
  border-top: 2px solid #000000;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin-left: 10px;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.footer-branding {
  background: #000000;
  color: #ffffff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 40px;
  z-index: 100;
  position: relative;
  flex-shrink: 0;
}
.footer-branding .sponsor-area {
  flex: 1;
  text-align: left;
  position: relative;
  z-index: 2;
}
.footer-branding .sponsor-area .sponsor-logo {
  cursor: pointer;
}
.footer-branding .sponsor-area .sponsor-logo img {
  object-fit: contain;
  transition: opacity 0.3s ease;
}
.footer-branding .sponsor-area .sponsor-logo img:hover {
  opacity: 0.8;
}
.footer-branding .sponsor-area .sponsor-name {
  font-size: 13px;
  color: #cccccc;
  font-weight: normal;
}
.footer-branding .sponsor-area .sponsor-name a {
  color: #ffffff;
  text-decoration: none;
}
.footer-branding .sponsor-area .sponsor-name a:hover {
  opacity: 0.8;
}
.footer-branding .lasta-logo {
  flex: 1;
  text-align: center;
  position: relative;
  z-index: 2;
}
.footer-branding .lasta-logo img {
  max-height: 40px;
  object-fit: contain;
  transition: transform 0.3s ease;
}
.footer-branding .lasta-logo img:hover {
  transform: scale(1.05);
}
.footer-branding .truck-tv-link {
  flex: 1;
  text-align: right;
  cursor: pointer;
  position: relative;
  z-index: 2;
}
.footer-branding .truck-tv-link a {
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
}
.footer-branding .truck-tv-link a:hover {
  transform: translateY(-2px);
}
.footer-branding .truck-tv-link a:active {
  transform: translateY(0);
}

@media (min-width: 1920px) {
  .content-area {
    padding: 0px 20px 20px;
  }

  .gallery-carousel .gallery-item img {
    max-height: 75vh;
  }

  .footer-branding {
    padding: 20px 60px;
  }
  .footer-branding .lasta-logo img {
    max-height: 45px;
  }
  .footer-branding .truck-tv-link a {
    font-size: 15px;
    padding: 7px 15px;
  }

  .owl-dots {
    margin-top: 25px;
  }
}
@media (min-width: 1800px) {
  .nav-arrows {
    left: 5%;
    right: 5%;
    width: auto;
    transform: translateY(-50%);
    max-width: initial;
  }
}
@media (min-width: 1200px) and (max-width: 1799px) {
  .content-area {
    padding: 20px 20px 70px;
    max-width: 1000px;
    margin: 0 auto;
  }

  .gallery-carousel .gallery-item img {
    max-height: 70vh;
  }

  .header .site-title {
    font-size: 24px;
  }
}
@media (min-width: 1800px) and (max-width: 1919px) {
  .content-area {
    padding: 20px 20px 70px;
  }

  .gallery-carousel .gallery-item img {
    max-height: 72vh;
  }
}
@media (max-width: 1024px) {
  .header .site-title {
    font-size: 22px;
  }

  body {
    overflow-x: hidden;
  }

  .content-area {
    padding: 20px 15px 70px;
    overflow-x: hidden;
    max-width: 100%;
    width: 100%;
    box-sizing: border-box;
  }

  .gallery-carousel {
    overflow: hidden;
    width: 100%;
    max-width: 100%;
  }
  .gallery-carousel .owl-stage-outer {
    overflow: hidden;
  }
  .gallery-carousel .gallery-item {
    width: 100% !important;
  }
  .gallery-carousel .gallery-item img {
    width: 100%;
    height: auto;
    object-fit: contain;
    max-width: 100%;
  }

  .nav-arrows {
    max-width: 95%;
  }
  .nav-arrows .nav-arrow {
    width: 45px;
    height: 45px;
    font-size: 22px;
  }

  .gallery-carousel .gallery-item img {
    max-height: 70vh;
  }
  .gallery-carousel .gallery-item .image-overlay {
    padding: 15px;
  }
  .gallery-carousel .gallery-item .image-overlay .image-title {
    font-size: 16px;
  }
  .gallery-carousel .gallery-item .image-overlay .image-meta {
    font-size: 13px;
  }

  .content-area {
    padding: 20px 15px 110px;
  }

  .content-single h1 {
    font-size: 28px;
  }

  .content-overview {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
  }
}
@media (max-width: 768px) {
  .header {
    padding: 15px 0;
  }
  .header .site-title {
    font-size: 18px;
    letter-spacing: 0.5px;
  }
}
@media (max-width: 768px) and (min-width: 481px) {
  .hamburger-menu {
    top: 15px;
    right: 15px;
    padding: 8px;
  }
  .hamburger-menu .hamburger-lines {
    width: 25px;
    height: 16px;
  }
  .hamburger-menu .hamburger-lines .hamburger-line {
    background-color: #ffffff !important;
  }

  .navigation-menu {
    top: 55px;
    right: 15px;
    min-width: 160px;
    padding: 12px;
  }
  .navigation-menu .nav-item {
    padding: 10px 12px;
    font-size: 14px;
  }
}
@media (max-width: 768px) and (max-width: 480px) {
  .hamburger-menu {
    top: 125px;
    right: 15px;
    padding: 8px;
  }
  .hamburger-menu .hamburger-lines {
    width: 25px;
    height: 16px;
  }
  .hamburger-menu .hamburger-lines .hamburger-line {
    background-color: #000000 !important;
  }

  .navigation-menu {
    top: 165px;
    right: 15px;
    min-width: 160px;
    padding: 12px;
  }
  .navigation-menu .nav-item {
    padding: 10px 12px;
    font-size: 14px;
  }
}
@media (max-width: 768px) {
  .content-area {
    padding: 20px 10px 100px;
    max-width: 100%;
    width: 100%;
    box-sizing: border-box;
    overflow-x: hidden;
  }
}
@media (max-width: 768px) {
  .gallery-carousel .gallery-item img {
    max-height: 60vh;
  }
  .gallery-carousel .gallery-item .image-overlay {
    padding: 12px;
  }
  .gallery-carousel .gallery-item .image-overlay .image-title {
    font-size: 14px;
  }
  .gallery-carousel .gallery-item .image-overlay .image-meta {
    font-size: 12px;
    flex-direction: column;
    align-items: flex-start;
    gap: 3px;
  }
}
@media (max-width: 768px) {
  .nav-arrows {
    max-width: 90%;
  }
  .nav-arrows .nav-arrow {
    width: 40px;
    height: 40px;
    font-size: 18px;
  }
  .nav-arrows .nav-arrow.nav-prev {
    margin-left: 10px;
  }
  .nav-arrows .nav-arrow.nav-next {
    margin-right: 10px;
  }
}
@media (max-width: 768px) {
  .content-single h1 {
    font-size: 24px;
    margin-bottom: 25px;
  }
  .content-single .content-text {
    font-size: 15px;
    line-height: 1.7;
  }
}
@media (max-width: 768px) {
  .content-overview {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .content-overview .content-item {
    padding: 15px;
  }
  .content-overview .content-item h2 {
    font-size: 20px;
  }
  .content-overview .content-item .content-image img {
    height: 180px;
  }
}
@media (max-width: 768px) {
  .footer-branding {
    flex-direction: column;
    gap: 15px;
    padding: 20px;
    position: relative;
  }
  .footer-branding .sponsor-area,
.footer-branding .lasta-logo,
.footer-branding .truck-tv-link {
    text-align: center;
    flex: none;
  }
  .footer-branding .lasta-logo img {
    max-height: 40px;
  }
  .footer-branding .truck-tv-link a {
    font-size: 14px;
    padding: 6px 12px;
  }
}
@media (max-width: 768px) {
  .owl-dots {
    margin-top: 15px;
  }
  .owl-dots .owl-dot {
    width: 10px;
    height: 10px;
    margin: 0 4px;
  }
}
@media (max-width: 480px) {
  .header .site-title {
    font-size: 16px;
  }

  .content-area {
    padding: 20px 8px 0px;
  }

  .gallery-carousel .gallery-item img {
    max-height: 50vh;
  }

  .content-single h1 {
    font-size: 20px;
  }
  .content-single .content-text {
    font-size: 14px;
  }

  .nav-arrows .nav-arrow {
    width: 35px;
    height: 35px;
    font-size: 16px;
  }

  .navigation-menu {
    right: 8px;
    min-width: 140px;
  }
  .navigation-menu .nav-item {
    padding: 8px 10px;
    font-size: 13px;
  }

  .footer-branding {
    gap: 10px;
    padding: 0 15px;
  }
  .footer-branding .truck-tv-link {
    max-width: 200px;
  }
  .footer-branding .truck-tv-link img {
    max-width: 100%;
  }
  .footer-branding .truck-tv-link a {
    font-size: 13px;
    padding: 5px 10px;
  }
}
@media (hover: none) and (pointer: coarse) {
  .gallery-item .image-overlay {
    opacity: 1;
    background: linear-gradient(transparent 60%, rgba(0, 0, 0, 0.8));
  }

  .nav-arrow {
    opacity: 0.9 !important;
  }
  .nav-arrow:active {
    transform: scale(0.95);
  }

  .hamburger-menu:active {
    transform: scale(0.95);
  }

  .truck-tv-link a:active {
    transform: none !important;
  }
}
@media print {
  .hamburger-menu,
.navigation-menu,
.nav-arrows,
.footer-branding {
    display: none;
  }

  .content-area {
    padding: 20px;
  }

  .gallery-carousel .gallery-item img {
    max-height: none;
    height: auto;
  }
}