/* ============================================================
   Tips & Advice — index / listing page
   ============================================================ */

/* ===== Page hero (matches other inner pages) ===== */
.area-page-hero {
  background: var(--paper, #fff);
  padding: 64px max(56px, calc((100% - 1328px) / 2)) 56px;
  border-bottom: 1px solid var(--rule, rgba(31,31,27,0.16));
  text-align: center;
}
.area-page-hero .breadcrumb {
  font-family: "Josefin Sans", "Inter", system-ui, sans-serif;
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-soft, #3F3E36);
  margin-bottom: 18px;
}
.area-page-hero .breadcrumb a {
  color: var(--green-deep, #73B96B);
  text-decoration: none;
}
.area-page-hero h1 {
  font-family: "Josefin Sans", "Inter", system-ui, sans-serif;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #00384D;
  margin-bottom: 14px;
}
.area-page-hero .display {
  font-family: "Josefin Sans", "Inter", system-ui, sans-serif;
  font-weight: 600;
  font-size: 56px;
  line-height: 1.05;
  color: var(--ink, #1F1F1B);
  max-width: 820px;
  margin: 0 auto 18px;
  letter-spacing: -0.01em;
}
.area-page-hero .lede {
  font-family: "Josefin Sans", "Inter", system-ui, sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 1.65;
  color: var(--ink-soft, #3F3E36);
  max-width: 720px;
  margin: 0 auto;
}

/* ===== Listing band ===== */
.ta-list-band {
  background: var(--paper-deep, #F4F9F1);
  padding: 64px max(56px, calc((100% - 1328px) / 2));
}
.ta-empty {
  text-align: center;
  font-family: "Josefin Sans", "Inter", system-ui, sans-serif;
  color: var(--ink-soft, #3F3E36);
  font-size: 17px;
  padding: 40px 0;
}
.ta-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  max-width: 1240px;
  margin: 0 auto;
}

/* ===== Card ===== */
.ta-card {
  background: var(--paper-card, #fff);
  border: 1px solid var(--rule, rgba(31,31,27,0.16));
  border-radius: 10px;
  overflow: hidden;
  transition: transform 0.15s, box-shadow 0.2s, border-color 0.15s;
}
.ta-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 32px rgba(31,31,27,0.12);
  border-color: var(--green-deep, #73B96B);
}
.ta-card-link {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: var(--ink, #1F1F1B);
  height: 100%;
}
.ta-card-photo {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
  display: block;
  background: var(--paper-deep, #F4F9F1);
}
.ta-card-photo--placeholder {
  background: linear-gradient(135deg, var(--clay-soft, #D9EAD4) 0%, var(--paper-deep, #F4F9F1) 100%);
}
.ta-card-body {
  padding: 20px 22px 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}
.ta-card-meta {
  display: flex;
  gap: 8px;
  align-items: center;
  flex-wrap: wrap;
  font-family: "Josefin Sans", "Inter", system-ui, sans-serif;
  font-weight: 700;
  font-size: 11.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green-darker, #00384D);
}
.ta-card-meta .sep { color: rgba(31,31,27,0.30); }
.ta-card-body h2 {
  font-family: "Josefin Sans", "Inter", system-ui, sans-serif;
  font-weight: 600;
  font-size: 22px;
  line-height: 1.2;
  color: var(--ink, #1F1F1B);
  margin: 0;
}
.ta-card-body p {
  font-family: "Josefin Sans", "Inter", system-ui, sans-serif;
  font-weight: 400;
  font-size: 15px;
  line-height: 1.55;
  color: var(--ink-soft, #3F3E36);
  margin: 0;
  flex: 1;
}
.ta-card-cta {
  font-family: "Josefin Sans", "Inter", system-ui, sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--green-deep, #73B96B);
  margin-top: 4px;
}

@media (max-width: 1024px) {
  .ta-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .area-page-hero { padding: 36px 18px 40px; }
  .area-page-hero .display { font-size: 36px; }
  .area-page-hero .lede { font-size: 15.5px; }
  .ta-list-band { padding: 36px 18px; }
  .ta-grid { grid-template-columns: 1fr; gap: 16px; }
  .ta-card-body h2 { font-size: 20px; }
}
