:root {
  --fdd-blue: #00558c;
  --fdd-navy: #002238;
  --fdd-light: #e6f0f5;
  --fdd-accent: #0077b6;
  --fdd-gray: #505050;
  --fdd-gray-2: #868686;
  --fdd-border: #78a4c8;
  --fdd-divider: #f1e8b8;
}

/* Header (Figma 14:1431) */
.fdd-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  height: 75px;
  background: var(--fdd-blue);
  /* border-bottom removed */
  backdrop-filter: blur(10px);
}

.fdd-header-inner {
  height: 75px;
  /* Adjust inner height to match header since border is gone (73+2=75) */
  display: flex;
  align-items: center;
  padding: 4px 30px;
  position: relative;
}

.fdd-logo {
  display: inline-flex;
  align-items: center;
  max-width: 210px;
}

.fdd-logo img {
  height: 64.73px;
  width: auto;
  display: block;
}

.fdd-nav-title {
  position: absolute;
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  font-family: Lato, Inter, system-ui, sans-serif;
  font-weight: 700;
  color: #fff;
  font-size: 15px;
  letter-spacing: 0.5px;
  opacity: 0;
  transition: opacity 300ms ease, transform 300ms ease;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  pointer-events: none;
  max-width: 50%;
  text-align: center;
}

.fdd-nav-title.visible {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

@media (max-width: 768px) {
  .fdd-nav-title {
    display: none;
    /* Hide on mobile/tablet if space is tight, or just reduce size? Logo is 210px max. Mobile is 320+. 
                     Let's hide it on very small screens or reduce size. 
                     Actually, just scaling font down is better. */
    font-size: 15px;
    margin-left: 12px;
  }
}

.fdd-header-overlay {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -9px;
  height: 9px;
  background: #a3a3a3;
  transform-origin: 0 50%;
  transform: scaleX(0);
  will-change: transform;
  pointer-events: none;
}

/* Typography blocks (Figma 14:910–14:919) */
.fdd-title {
  font-family: Oswald, Inter, system-ui, sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--fdd-blue);
  font-size: 45px;
  line-height: 40px;
  letter-spacing: -0.3px;
  margin: 0;
}

.fdd-subtitle {
  font-family: Lato, Inter, system-ui, sans-serif;
  font-weight: 400;
  color: var(--fdd-blue);
  font-size: 30px;
  line-height: 40px;
}

.fdd-byline {
  font-family: Lato, Inter, system-ui, sans-serif;
  font-style: italic;
  font-weight: 400;
  color: #3d3d3d;
  font-size: 18px;
  line-height: 25.2px;
}

.fdd-intro {
  font-family: Lato, Inter, system-ui, sans-serif;
  font-weight: 400;
  color: var(--fdd-gray);
  font-size: 17px;
  line-height: 28px;
}

.fdd-section-title {
  font-family: Oswald, Inter, system-ui, sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--fdd-blue);
  font-size: 24px;
  line-height: 28px;
  letter-spacing: -0.2px;
}

.fdd-subsection-title {
  font-family: Oswald, Inter, system-ui, sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--fdd-blue);
  font-size: 18px;
  line-height: 22px;
  letter-spacing: -0.15px;
  margin: 0;
}

/* Gallery */
.gallery-thumb {
  display: block;
  width: 100%;
  border: 0;
  padding: 0;
  margin: 0;
  background: transparent;
  cursor: pointer;
}

.gallery-thumb img {
  display: block;
  width: 100%;
  transform: scale(1);
  transition: transform 180ms ease, filter 180ms ease;
}

.gallery-thumb:hover img {
  transform: scale(1.03);
}

.gallery-thumb:focus {
  outline: none;
}

.gallery-thumb:focus-visible {
  box-shadow: 0 0 0 3px rgba(0, 85, 140, 0.22);
  border-radius: 14px;
}

.gallery-caption {
  padding: 10px 12px 12px;
  font-size: 12px;
  line-height: 16px;
  color: var(--fdd-gray-2);
  font-style: italic;
}

.gallery-caption-title {
  color: var(--fdd-gray);
  font-weight: 600;
  font-style: normal;
}

.gallery-caption-source {
  margin-top: 6px;
}

/* Lightbox */
.fdd-lightbox {
  width: min(980px, calc(100vw - 32px));
  border: 1px solid rgba(120, 164, 200, 0.6);
  border-radius: 18px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.98);
  color: var(--fdd-gray);
  box-shadow: 0 30px 90px rgba(0, 34, 56, 0.32);
}

.fdd-lightbox::backdrop {
  background: rgba(0, 34, 56, 0.72);
}

.fdd-lightbox-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  border: 1px solid rgba(120, 164, 200, 0.75);
  background: rgba(230, 240, 245, 0.95);
  color: var(--fdd-blue);
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
}

.fdd-lightbox-close:hover {
  background: rgba(230, 240, 245, 1);
}

.fdd-lightbox-close:focus {
  outline: none;
}

.fdd-lightbox-close:focus-visible {
  box-shadow: 0 0 0 3px rgba(0, 85, 140, 0.22);
}

.fdd-lightbox-figure {
  margin: 0;
}

.fdd-lightbox-img {
  display: block;
  width: 100%;
  height: auto;
  max-height: min(70vh, 640px);
  object-fit: contain;
  border-radius: 14px;
  border: 1px solid rgba(120, 164, 200, 0.55);
  background: #fff;
  opacity: 1;
  transition: opacity 140ms ease;
}

.fdd-lightbox-caption {
  margin-top: 10px;
  font-size: 13px;
  line-height: 18px;
  color: var(--fdd-gray-2);
  font-style: italic;
}

.fdd-lightbox-title {
  color: var(--fdd-gray);
  font-weight: 600;
}

.fdd-lightbox-source {
  margin-top: 6px;
}

@media (max-width: 640px) {
  .fdd-title {
    font-size: 32px;
    line-height: 32px;
  }

  .fdd-subtitle {
    font-size: 20px;
    line-height: 28px;
  }
}

/* CTA buttons (match Figma-ish pill treatment) */
.fdd-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 22px;
  border: 2px solid var(--fdd-blue);
  padding: 10px 18px;
  font-family: Oswald, Inter, system-ui, sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  font-size: 13px;
  line-height: 18px;
  color: var(--fdd-blue);
  background: #fff;
  text-decoration: none;
}

.fdd-cta:hover {
  background: rgba(0, 85, 140, 0.06);
}

.fdd-cta-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 22px;
  border: 2px solid rgba(0, 85, 140, 0.35);
  padding: 10px 18px;
  font-family: Oswald, Inter, system-ui, sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  font-size: 13px;
  line-height: 18px;
  color: var(--fdd-blue);
  background: #fff;
  text-decoration: none;
}

.fdd-cta-secondary:hover {
  background: rgba(0, 85, 140, 0.04);
}

/* Panels */
.fdd-panel {
  border: 1px solid rgba(120, 164, 200, 0.45);
  border-radius: 20px;
  background: #fff;
  padding: 16px;
}

/* Map */
.map-shell {
  height: 560px;
  border-radius: 1rem;
  overflow: hidden;
  margin-top: 0.75rem;
  border: 1px solid rgba(120, 164, 200, 0.55);
}

.mapboxgl-popup {
  max-width: 340px;
}

/* Close button positioned to overlap the top-right of the visual card */
.mapboxgl-popup-close-button {
  top: 10px;
  right: 10px;
  width: 32px;
  height: 32px;
  border-radius: 999px;
  color: var(--fdd-blue);
  font-size: 24px;
  line-height: 1;
  background: rgba(230, 240, 245, 0.9);
  border: 1px solid rgba(120, 164, 200, 0.75);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 20;
  transition: background 150ms ease;
}

.mapboxgl-popup-close-button:hover {
  background: rgba(230, 240, 245, 1);
  border-color: rgba(120, 164, 200, 0.95);
}

.mapboxgl-popup-close-button:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(0, 85, 140, 0.18);
}

.mapboxgl-popup-content {
  background: transparent;
  color: var(--fdd-gray);
  border: none;
  border-radius: 0;
  box-shadow: none;
  padding: 0;
}

.popup-card {
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(120, 164, 200, 0.55);
  border-radius: 16px;
  box-shadow: 0 16px 40px rgba(0, 34, 56, 0.2);
  overflow: hidden;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.popup-header {
  border-bottom: 1px solid rgba(120, 164, 200, 0.25);
  padding-bottom: 12px;
}

.popup-title {
  font-family: Oswald, Inter, sans-serif;
  font-weight: 700;
  font-size: 17px;
  line-height: 1.3;
  color: var(--fdd-blue);
  text-transform: uppercase;
  margin-bottom: 4px;
}

.popup-meta {
  font-size: 13px;
  color: var(--fdd-gray-2);
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
}

.popup-dot {
  color: rgba(120, 164, 200, 0.6);
}

.popup-body {
  font-size: 14px;
  line-height: 1.5;
  color: #333;
}

.popup-footer {
  margin-top: 4px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.popup-status {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 600;
  color: var(--fdd-blue);
  background: rgba(0, 85, 140, 0.06);
  padding: 4px 10px;
  border-radius: 6px;
  align-self: flex-start;
}

.popup-links {
  display: flex;
  gap: 12px;
  font-size: 13px;
}

.legend-dot {
  width: 0.6rem;
  height: 0.6rem;
  border-radius: 999px;
  display: inline-block;
  border: 1px solid rgba(0, 34, 56, 0.25);
}

.legend-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 1.4rem;
  height: 1.1rem;
  padding: 0 0.35rem;
  margin-left: 0.25rem;
  border-radius: 999px;
  border: 1px solid rgba(120, 164, 200, 0.55);
  background: rgba(230, 240, 245, 0.7);
  color: rgba(0, 85, 140, 0.95);
  font-weight: 700;
  font-size: 11px;
  line-height: 1;
}

.legend-item {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  border-radius: 999px;
  border: 1px solid rgba(120, 164, 200, 0.55);
  background: #fff;
  padding: 0.25rem 0.55rem;
  color: var(--fdd-gray);
  cursor: pointer;
  user-select: none;
}

.legend-item:hover {
  background: rgba(0, 85, 140, 0.03);
  border-color: rgba(0, 85, 140, 0.35);
}

.legend-item[aria-pressed="true"] {
  background: rgba(0, 85, 140, 0.08);
  border-color: rgba(0, 85, 140, 0.55);
  color: rgba(0, 85, 140, 0.95);
}

.legend-item:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(0, 85, 140, 0.18);
}

.legend-water {
  background: var(--fdd-gray-2);
}

.legend-fire {
  background: #f97316;
}

.legend-subsidence {
  background: #f43f5e;
}

.legend-air {
  background: #a78bfa;
}

.legend-other {
  background: #22c55e;
}

/* Card hover */
.incident-card {
  border: 1px solid rgba(120, 164, 200, 0.45);
  background: #ffffff;
  border-radius: 1rem;
  padding: 0.9rem;
  transition: transform 200ms ease, border-color 200ms ease, background 200ms ease;
}

.incident-card:hover {
  transform: translateY(-2px);
  border-color: rgba(0, 85, 140, 0.35);
  background: rgba(0, 85, 140, 0.03);
}

/* Persistent scrollbar for left sidebar list */
#incident-list {
  overflow-y: scroll;
  overflow-x: hidden;
  scrollbar-gutter: stable;
  scrollbar-width: thin;
  scrollbar-color: rgba(0, 85, 140, 0.35) rgba(230, 240, 245, 0.9);
}

#incident-list::-webkit-scrollbar {
  width: 10px;
}

#incident-list::-webkit-scrollbar-track {
  background: rgba(230, 240, 245, 0.9);
  border-radius: 999px;
}

#incident-list::-webkit-scrollbar-thumb {
  background: rgba(0, 85, 140, 0.35);
  border-radius: 999px;
  border: 2px solid rgba(230, 240, 245, 0.9);
}

#incident-list::-webkit-scrollbar-thumb:hover {
  background: rgba(0, 85, 140, 0.5);
}

.tag {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  border-radius: 999px;
  border: 1px solid rgba(120, 164, 200, 0.55);
  padding: 0.25rem 0.55rem;
  font-size: 12px;
  color: rgba(0, 85, 140, 0.90);
  background: #fff;
  flex-shrink: 0;
  white-space: nowrap;
}

.tag-dot {
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 999px;
  display: inline-block;
  flex: 0 0 auto;
}

/* Better focus */
input:focus {
  outline: none;
}

/* Before / After slider */
.ba {
  position: relative;
  width: 100%;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(120, 164, 200, 0.55);
  background: rgba(230, 240, 245, 0.35);
}

.ba-view {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
}

@media (max-width: 640px) {
  .ba-view {
    aspect-ratio: 4 / 3;
  }
}

.ba-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.ba-after {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  /* Reveal AFTER to the right of the handle without resizing the image */
  clip-path: inset(0 0 0 var(--pos, 50%));
}

.ba-range {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  cursor: ew-resize;
  background: transparent;
  -webkit-appearance: none;
  appearance: none;
}

.ba-range:focus-visible {
  box-shadow: 0 0 0 3px rgba(0, 85, 140, 0.18);
}

/* Track */
.ba-range::-webkit-slider-runnable-track {
  background: transparent;
  height: 100%;
}

.ba-range::-moz-range-track {
  background: transparent;
  height: 100%;
}

/* Thumb: use a tall handle + line */
.ba-range::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 34px;
  height: 100%;
  background: transparent;
  border: none;
}

.ba-range::-moz-range-thumb {
  width: 34px;
  height: 100%;
  background: transparent;
  border: none;
  border-radius: 0;
}

.ba-label {
  position: absolute;
  top: 10px;
  z-index: 3;
  pointer-events: none;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 8px 14px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.6);
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(8px);
  color: var(--fdd-blue);
  box-shadow: 0 8px 20px rgba(0, 34, 56, 0.12);
  transition: opacity 250ms ease, transform 250ms ease;
  line-height: 1;
  text-align: center;
}

.ba-label-title {
  font-weight: 800;
  font-size: 13px;
  text-transform: uppercase;
  margin-bottom: 3px;
  letter-spacing: 0.02em;
}

.ba-label-date {
  font-weight: 600;
  font-size: 11px;
  color: var(--fdd-gray);
}

.ba-label-hidden {
  opacity: 0;
  transform: scale(0.9);
}

.ba-label-left {
  left: 12px;
}

.ba-label-right {
  right: 12px;
}

.ba-handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: var(--pos, 50%);
  transform: translateX(-50%);
  width: 2px;
  background: #fff;
  z-index: 2;
  pointer-events: none;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
}

.ba-pill {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--fdd-blue);
  box-shadow: 0 4px 12px rgba(0, 34, 56, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  border: 4px solid #fff;
}

/* Removed instructions arrows inside pill
.ba-pill::before,
.ba-pill::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-top: 4px solid transparent;
  border-bottom: 4px solid transparent;
}

.ba-pill::before {
  right: 10px;
  border-right: 5px solid #fff;
}

.ba-pill::after {
  left: 10px;
  border-left: 5px solid #fff;
}
*/

/* Footer (Figma 7:89) */
.fdd-footer {
  position: relative;
  background: var(--fdd-blue);
  padding: 48px 24px;
  overflow: hidden;
}

.fdd-footer-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, var(--fdd-blue) 0%, #004570 100%);
  pointer-events: none;
}

.fdd-footer-inner {
  position: relative;
  max-width: 1140px;
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 48px;
  flex-wrap: wrap;
}

.fdd-footer-left {
  width: min(672px, 100%);
  display: flex;
  flex-direction: column;
  gap: 22.8px;
}

.fdd-footer-logo {
  display: inline-flex;
  align-items: center;
  height: 48px;
  overflow: hidden;
  text-decoration: none;
}

.fdd-footer-logo img {
  height: 48px;
  width: auto;
  display: block;
}

.fdd-footer-description {
  font-family: Lato, Inter, system-ui, sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 22.75px;
  color: rgba(255, 255, 255, 0.9);
  white-space: normal;
}

.fdd-footer-meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0;
  padding-top: 0.7px;
}

.fdd-footer-copyright,
.fdd-footer-privacy {
  font-family: Lato, Inter, system-ui, sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  color: rgba(255, 255, 255, 0.7);
}

.fdd-footer-privacy {
  text-decoration: underline;
  text-underline-position: from-font;
}

.fdd-footer-privacy:hover {
  color: rgba(255, 255, 255, 0.9);
}

.fdd-footer-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 24px;
  flex: 1 1 240px;
  min-width: 240px;
}

.fdd-footer-ctas {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: stretch;
}

.fdd-footer-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 9999px;
  border: 1px solid rgba(255, 255, 255, 0.6);
  padding: 13px 25px;
  color: #fff;
  font-family: Helvetica, Lato, Inter, system-ui, sans-serif;
  font-weight: 700;
  font-size: 16px;
  line-height: 24px;
  text-decoration: none;
  text-align: center;
}

.fdd-footer-pill:hover {
  background: rgba(255, 255, 255, 0.08);
}

.fdd-footer-social {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  gap: 16px;
}

.fdd-footer-social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
  border-radius: 9999px;
  text-decoration: none;
}

.fdd-footer-social-link:hover {
  background: rgba(255, 255, 255, 0.08);
}

.fdd-footer-social-link img {
  width: 24px;
  height: 24px;
  display: block;
}

@media (max-width: 900px) {
  .fdd-footer-right {
    align-items: flex-start;
  }
}

/* Credits (FDD additions) */
.fdd-credits {
  background: transparent;
  width: 100%;
}

.fdd-byline {
  color: var(--fdd-gray);
  line-height: 1.5;
}

@media (max-width: 768px) {
  .fdd-byline {
    font-size: 14px;
    padding: 0 1rem;
  }
}

/* Related Visuals (FDD Visuals) */
.rv-nav-btn {
  width: 44px;
  height: 44px;
  border: 2px solid #00558c;
  border-radius: 50%;
  background: white;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  color: #00558c;
}

.rv-nav-btn:hover:not(:disabled) {
  background: #00558c;
  transform: scale(1.05);
  color: white;
}

.rv-nav-btn:disabled {
  border-color: #ccc;
  cursor: not-allowed;
  opacity: 0.5;
  color: #ccc;
}

.rv-card {
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  height: 300px;
  text-align: left;
}

.rv-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.15);
}

.rv-card-img-wrap {
  width: 100%;
  height: 200px;
  overflow: hidden;
  background: #f5f5f5;
  flex-shrink: 0;
}

.rv-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.rv-card:hover .rv-card-img {
  transform: scale(1.05);
}

.rv-card-content {
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.rv-card-title {
  font-family: 'Lato', sans-serif;
  font-weight: 800;
  font-size: 14px;
  color: var(--fdd-blue);
  margin: 0 0 2px 0;
  line-height: 18px;
  /* Multi-line clamp */
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.rv-card-meta {
  color: var(--fdd-gray);
  font-family: 'Lato', sans-serif;
  font-size: 13px;
  font-weight: 400;
  line-height: 18px;
  margin-top: 4px;
}

.rv-meta-date {
  font-weight: 800;
}

/* Mobile responsive for Related Visuals */
@media (max-width: 768px) {
  .rv-header {
    flex-direction: column;
    align-items: stretch;
    gap: 15px;
    margin-bottom: 15px;
  }

  .rv-title {
    font-size: 24px;
  }

  .rv-navigation {
    display: flex;
    justify-content: center;
  }

  .rv-nav-btn {
    width: 36px;
    height: 36px;
  }

  /* On mobile, we use a vertical list style for cards (inside horizontal slide groups) */
  .rv-card {
    flex-direction: row;
    align-items: center;
    gap: 12px;
    height: 80px;
    margin-bottom: 2px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  }

  .rv-card:hover {
    transform: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  }

  .rv-card-img-wrap {
    width: 60px;
    height: 60px;
    flex: 0 0 60px;
    border-radius: 6px;
    margin-left: 10px;
    /* slight indent */
  }

  .rv-card-content {
    padding: 5px 10px 5px 0;
    text-align: left;
  }

  .rv-card-title {
    font-size: 12px;
    line-height: 14px;
    margin-bottom: 4px;
  }

  .rv-card-meta {
    font-size: 10px;
    line-height: 12px;
  }
}