.fp-widget {
  width: 100%;
  box-sizing: border-box;
  font-family: "Inter", "Helvetica Neue", Helvetica, Arial, sans-serif;
}

.fp-container {
  max-width: 100%;
  margin: 0;
  padding: 0 40px;
  box-sizing: border-box;
}

.fp-body {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* Nav row: logo list on the left, CTA on the right */
.fp-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  width: 100%;
}

.fp-nav-scroll {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: flex-start;
  height: auto;
  overflow-x: auto;
  overflow-y: visible;
  padding-bottom: 16px;
  gap: 36px;
  border-bottom: 2px solid #e6e6e6;
  scrollbar-width: thin;
  scrollbar-color: #c8102e transparent;
  flex: 1 1 auto;
}

.fp-nav-scroll::-webkit-scrollbar {
  width: 4px;
}
.fp-nav-scroll::-webkit-scrollbar-track {
  background: transparent;
}
.fp-nav-scroll::-webkit-scrollbar-thumb {
  background-color: #e0e0e0;
  border-radius: 2px;
}

.fp-btn {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background: transparent;
  background-color: transparent;
  border: none;
  outline: none;
  box-shadow: none;
  padding: 0 0 16px 0;
  text-align: left;
  cursor: pointer;
  position: relative;
  transition: all 0.3s ease;
  width: auto;
  white-space: nowrap;
}

.fp-btn::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -18px;
  height: 2px;
  background-color: #c8102e;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.fp-btn.active::after {
  transform: scaleX(1);
}

.fp-btn-content {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.fp-btn-loc {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #888;
  transition: color 0.3s ease;
}

.fp-btn-title-wrap {
  display: flex;
  align-items: center;
}

.fp-btn-name {
  font-family: "Georgia", "Times New Roman", serif;
  font-size: 32px;
  font-weight: 400;
  color: #ddd;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: color 0.3s ease;
}

.fp-btn-logo {
  height: 32px;
  max-width: 100%;
  object-fit: contain;
  opacity: 0.35;
  filter: grayscale(100%);
  transition: all 0.3s ease;
}

.fp-btn.active .fp-btn-loc,
.fp-btn:hover .fp-btn-loc {
  color: #555;
}

.fp-btn.active .fp-btn-name,
.fp-btn:hover .fp-btn-name {
  color: #222;
}

.fp-btn.active .fp-btn-logo,
.fp-btn:hover .fp-btn-logo {
  opacity: 1;
  filter: grayscale(0%);
}

/* Nav CTA - top right, next to the logo row */
.fp-nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border: 1px solid #222;
  border-radius: 30px;
  color: #222;
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  white-space: nowrap;
  flex-shrink: 0;
  margin-bottom: 16px;
  transition: all 0.3s ease;
}

.fp-nav-cta:hover {
  background: #222;
  color: white;
}

/* Right Panel */
.fp-panel {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.fp-img-wrap {
  width: 100%;
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  background: #f0f0f0;
}

.fp-img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  display: block;
  transition: opacity 0.3s ease;
}

.fp-tag-badge {
  position: absolute;
  top: 0;
  left: 0;
  background-color: #c8102e;
  color: white;
  padding: 8px 16px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  z-index: 10;
}

.fp-carousel-controls {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  padding: 0 20px;
  z-index: 10;
  pointer-events: none;
}

.fp-carousel-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  pointer-events: auto;
  color: #333;
  transition: all 0.2s ease;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.fp-carousel-btn:hover {
  background: white;
  transform: scale(1.05);
}

.fp-carousel-dots {
  position: absolute;
  bottom: 20px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  gap: 8px;
  z-index: 10;
}

.fp-carousel-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  transition: all 0.3s ease;
}

.fp-carousel-dot.active {
  background: white;
  width: 12px;
  border-radius: 3px;
}

/* Content Area below image */
.fp-content-area {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.fp-meta-row {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #888;
}

.fp-caption-title {
  margin: 0;
  font-size: 36px;
  font-family: "Georgia", "Times New Roman", serif;
  color: #222;
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.fp-title-main {
  font-weight: 400;
}

.fp-title-sep {
  color: #aaa;
  font-weight: 300;
}

.fp-title-sub {
  color: #888;
  font-weight: 300;
}

.fp-desc {
  margin: 0;
  font-size: 15px;
  line-height: 1.6;
  color: #555;
  max-width: 800px;
}

.fp-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border: 1px solid #222;
  border-radius: 30px;
  color: #222;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  align-self: flex-start;
  transition: all 0.3s ease;
  margin-top: 8px;
}

.fp-cta-btn:hover {
  background: #222;
  color: white;
}

/* Responsive */
@media (max-width: 992px) {
  .fp-nav {
    flex-direction: column;
    align-items: stretch;
  }

  .fp-nav-cta {
    align-self: flex-start;
    margin-bottom: 0;
  }

  .fp-nav-scroll {
    flex-direction: row;
    overflow-x: auto;
    padding-bottom: 16px;
    gap: 30px;
    border-bottom: 2px solid #e6e6e6;
  }

  .fp-btn {
    width: auto;
    white-space: nowrap;
    padding: 0 0 12px 0;
  }

  .fp-btn::after {
    bottom: -14px;
  }

  .fp-img {
    height: 320px;
  }

  .fp-caption-title {
    font-size: 28px;
  }
}

@media (max-width: 768px) {
  .fp-img {
    height: 260px;
  }

  .fp-caption-title {
    flex-direction: column;
    gap: 4px;
  }

  .fp-title-sep {
    display: none;
  }
}