﻿.sfWatermark {
    font-size: 16px;
    color: #000000;
    text-align: center;
    border: #FFD000;
    background-color: #FFD000;
    min-height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
}

#tracking-consent {
    display: none;
    padding: 20px;
    position: relative;
    z-index: 10000000;
    background: #fff;
    position: fixed;
    left: 0;
    top: 45px;
    width: 100%;
    border: 1px solid #CED4DA;
}

/* News Carousel Styles */
.cl-news-carousel {
  padding: 2rem 0;
}

.cl-news-carousel__card {
  background: transparent;
  transition: transform 0.2s ease;
}

.cl-news-carousel__card:hover .cl-news-carousel__card-img {
  transform: scale(1.05);
}

.cl-news-carousel__card:hover .cl-news-carousel__card-title {
  color: #8B0000;
}

.cl-news-carousel__card-link {
  display: block;
  color: inherit;
}

.cl-news-carousel__card-link:hover {
  text-decoration: none;
}

.cl-news-carousel__card-img-wrapper {
  width: 100%;
  height: 280px;
  overflow: hidden;
  border-radius: 4px;
  background-color: #f5f5f5;
}

@media (max-width: 768px) {
  .cl-news-carousel__card-img-wrapper {
    height: 200px;
  }
}

.cl-news-carousel__card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.cl-news-carousel__card-body {
  padding: 1rem 0;
}

.cl-news-carousel__card-date {
  display: block;
  font-size: 0.875rem;
  color: #8B0000;
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.cl-news-carousel__card-title {
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 1.4;
  color: #1a1a2e;
  margin: 0;
  transition: color 0.2s ease;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.cl-news-carousel__footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px dashed #ccc;
}

.cl-news-carousel__all-posts-link {
  font-size: 1rem;
  font-weight: 500;
  color: #1a1a2e;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.cl-news-carousel__all-posts-link:hover {
  color: #8B0000;
}

.cl-news-carousel__arrow {
  transition: transform 0.2s ease;
}

.cl-news-carousel__all-posts-link:hover .cl-news-carousel__arrow {
  transform: translateX(4px);
}

.cl-news-carousel__nav {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.cl-news-carousel__nav-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid #ddd;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
  color: #666;
}

.cl-news-carousel__nav-btn:hover:not(:disabled) {
  border-color: #8B0000;
  color: #8B0000;
}

.cl-news-carousel__nav-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.cl-news-carousel__nav-btn--next {
  background: #8B0000;
  border-color: #8B0000;
  color: #fff;
}

.cl-news-carousel__nav-btn--next:hover {
  background: #6d0000;
  border-color: #6d0000;
  color: #fff;
}

.cl-news-carousel__indicators {
  display: flex;
  align-items: center;
  gap: 0.375rem;
}

.cl-news-carousel__indicator {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  background: #ddd;
  padding: 0;
  cursor: pointer;
  transition: all 0.2s ease;
}

.cl-news-carousel__indicator.active {
  background: #8B0000;
  width: 24px;
  border-radius: 4px;
}

.cl-news-carousel__indicator:hover:not(.active) {
  background: #bbb;
}

.cl-news-carousel .carousel-inner {
  overflow: visible;
}

.cl-news-carousel .carousel-item {
  transition: transform 0.5s ease;
}
