.elementor-554 .elementor-element.elementor-element-97ebf09{--display:flex;--flex-direction:row;--container-widget-width:initial;--container-widget-height:100%;--container-widget-flex-grow:1;--container-widget-align-self:stretch;--flex-wrap-mobile:wrap;}/* Start custom CSS for html, class: .elementor-element-eed406b */:root {
  --bg-top: #0D1B2A;        /* Blue Charcoal */
  --bg-bottom: #031A39;     /* Obsidian Blue */
  --card-bg: #0A2647;       /* Twilight Navy */
  --card-border: #133B7A;   /* Deep Sapphire */
  --accent: #5fa8ff;        /* Soft light blue accent */
  --accent-soft: rgba(95,168,255,0.16);
  --text-main: #ffffff;
  --text-muted: #c3d0e8;
  --radius: 16px;
  --transition: 0.25s ease;
}

/* =========================
   RESET / BASE
   ========================= */

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  background: radial-gradient(circle at top, var(--bg-top) 0%, var(--bg-bottom) 55%, #020815 100%);
  color: var(--text-main);
  -webkit-font-smoothing: antialiased;
}

.reviews-page {
  max-width: 1100px;
  margin: 0 auto;
  padding: 40px 20px 60px;
}

/* =========================
   HEADER
   ========================= */

.page-header {
  text-align: center;
  margin-bottom: 50px;
}

.page-header h1 {
  font-size: 2.8rem;
  letter-spacing: 0.03em;
  margin-bottom: 10px;
}

.page-header p {
  color: var(--text-muted);
  font-size: 1rem;
}

/* =========================
   ALBUM BLOCK
   ========================= */

.album-block {
  background: linear-gradient(
    135deg,
    rgba(19,59,122,0.5),
    rgba(3,26,57,0.9)
  );
  border: 1px solid rgba(19,59,122,0.6);
  padding: 24px 22px 30px;
  border-radius: var(--radius);
  margin-bottom: 55px;
  box-shadow: 0 22px 50px rgba(0,0,0,0.65);
  backdrop-filter: blur(4px);
}

/* Album header with cover + text */

.album-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 18px;
}

.album-cover {
  width: 70px;
  height: 70px;
  object-fit: cover;
  border-radius: 12px;
  border: 2px solid var(--card-border);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.7);
}

.album-meta {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.album-title {
  font-size: 2rem;
  margin: 0;
}

.album-subtitle {
  margin: 0;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1.4px;
  font-size: 0.85rem;
}

/* =========================
   GRID LAYOUT
   ========================= */

.reviews-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

@media (min-width: 760px) {
  .reviews-grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* =========================
   REVIEW CARD
   ========================= */

.review-card {
  background: var(--card-bg);
  border: 1px solid rgba(19,59,122,0.7);
  padding: 20px 20px 22px;
  border-radius: var(--radius);
  transition: var(--transition);
  box-shadow: 0 14px 30px rgba(0,0,0,0.7);
  position: relative;
  overflow: hidden;
}

.review-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at top left,
    rgba(95,168,255,0.16),
    transparent 60%
  );
  opacity: 0;
  transition: opacity var(--transition);
  pointer-events: none;
}

.review-card:hover {
  transform: translateY(-5px);
  border-color: var(--accent);
  box-shadow: 0 18px 40px rgba(0,0,0,0.9);
}

.review-card:hover::before {
  opacity: 1;
}

/* =========================
   REVIEW HEADER
   ========================= */

.review-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(19,59,122,0.8);
}

.review-source {
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-main);
}

.review-tag {
  background: var(--accent-soft);
  padding: 5px 10px;
  border-radius: 999px;
  font-size: 0.7rem;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  white-space: nowrap;
  border: 1px solid rgba(95,168,255,0.4);
}

.review-tag.rating {
  font-weight: 700;
}

/* =========================
   HIGHLIGHT QUOTE
   ========================= */

.review-highlight {
  margin: 10px 0 14px;
  font-weight: 600;
  font-size: 0.98rem;
  line-height: 1.6;
  color: var(--text-main);
  background: rgba(3,26,57,0.8);
  padding: 10px 12px;
  border-radius: 10px;
  border-left: 3px solid var(--accent);
}

/* =========================
   DETAILS / SUMMARY
   ========================= */

.review-details summary {
  cursor: pointer;
  font-size: 0.78rem;
  color: var(--accent);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 8px 0 4px;
  list-style: none;
  position: relative;
}

.review-details summary::-webkit-details-marker {
  display: none;
}

.review-details summary::after {
  content: "▼";
  font-size: 0.7rem;
  margin-left: 6px;
  transition: transform 0.25s ease;
}

.review-details[open] summary::after {
  transform: rotate(180deg);
}

/* =========================
   FULL REVIEW TEXT
   ========================= */

.full-review {
  margin-top: 10px;
  padding: 12px 12px 6px;
  background: rgba(6,20,45,0.9);
  border-radius: 10px;
  border: 1px solid rgba(19,59,122,0.7);
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.7;
  animation: fadeIn 0.28s ease-out;
}

.full-review p {
  margin-bottom: 0.7rem;
}

.review-footer {
  margin-top: 10px;
  padding-top: 8px;
  border-top: 1px solid rgba(19,59,122,0.7);
  font-size: 0.8rem;
  color: var(--accent);
}

/* =========================
   ANIMATIONS
   ========================= */

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* =========================
   RESPONSIVE
   ========================= */

@media (max-width: 768px) {
  .page-header h1 {
    font-size: 2.2rem;
  }

  .album-block {
    padding: 20px 16px 24px;
  }

  .review-card {
    padding: 18px 16px 20px;
  }

  .review-highlight {
    font-size: 0.95rem;
  }

  .full-review {
    font-size: 0.9rem;
  }
}

@media (max-width: 500px) {
  .review-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .review-tag {
    margin-top: 4px;
  }

  .album-header {
    align-items: flex-start;
  }

  .album-cover {
    width: 60px;
    height: 60px;
  }
}

/* ========================================================= */
/* MATCH HEADERS TO ABOUT PAGE COLOURS                      */
/* ========================================================= */

/* Main page title */
.page-header h1 {
  color: #77B8FF !important;
  text-shadow: 0 0 18px rgba(119,184,255,0.55);
  font-weight: 800;
}

/* Subheading under H1 */
.page-header p {
  color: #1F7CFF !important;
  font-weight: 600;
}

/* Album titles (H2) */
.album-title {
  color: #77B8FF !important;
  font-weight: 800;
}

/* Album subtitles (small text under album title) */
.album-subtitle {
  color: #1F7CFF !important;
  font-weight: 600;
  letter-spacing: 1.5px;
}/* End custom CSS */