/* Content Page Styles - Matches main site design */

body.content-page {
  background: #FFFEF2;
}

/* Hero Section for Content Pages */
.content-hero {
  padding: 160px 0 80px;
  background: #FFFEF2;
}

.content-hero .subtitle {
  font-size: 14px;
  color: #003310;
  margin-bottom: 10px;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.content-hero h1 {
  font-family: 'SeasonSerif', serif;
  font-weight: 300;
  font-size: 58px;
  line-height: 1.15;
  color: #181818;
  margin-bottom: 20px;
  letter-spacing: -1px;
}

.content-hero p {
  max-width: 760px;
  color: #666;
  font-size: 18px;
  line-height: 1.7;
}

/* Main Content Section */
.content-main {
  padding: 40px 0 100px;
  background: #FFFEF2;
}

.content-main > .container > p:first-child {
  font-size: 14px;
  color: #003310;
  margin-bottom: 40px;
  font-weight: 500;
  letter-spacing: 0.5px;
}

.content-main h2 {
  font-family: 'SeasonSerif', serif;
  font-weight: 300;
  margin: 50px 0 20px;
  color: #181818;
  font-size: 32px;
  letter-spacing: -0.5px;
}

.content-main p,
.content-main li {
  color: #666;
  font-size: 17px;
  line-height: 1.7;
}

.content-main ul {
  margin: 0;
  padding-left: 20px;
}

/* Card Grid */
.card-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.card {
  background: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  padding: 40px;
  transition: box-shadow 0.3s ease;
}

.card:hover {
  box-shadow: 0 8px 30px rgba(0,0,0,0.08);
}

.card h3 {
  font-family: 'SeasonSerif', serif;
  font-size: 22px;
  font-weight: 300;
  margin: 0 0 16px;
  letter-spacing: -0.2px;
}

.card h3 a {
  color: #181818;
  text-decoration: none;
  transition: color 0.3s;
}

.card h3 a:hover {
  color: #1C49A6;
}

.card p {
  margin: 0;
  color: #666;
  font-size: 16px;
  line-height: 1.6;
}

/* Placeholder Note */
.placeholder-note {
  margin-top: 40px;
  border-left: 4px solid #F04325;
  background: #fff;
  color: #666;
  padding: 20px 24px;
  font-size: 15px;
  border-radius: 0 4px 4px 0;
}

/* Meta List */
.meta-list {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 14px;
  color: #666;
  margin-bottom: 20px;
}

.content-main a {
  color: #1C49A6;
  text-decoration: none;
  font-weight: 500;
}

.content-main a:hover {
  text-decoration: underline;
}

/* Responsive */
@media (max-width: 900px) {
  .card-grid {
    grid-template-columns: 1fr;
  }

  .content-hero {
    padding-top: 120px;
    padding-bottom: 60px;
  }

  .content-hero h1 {
    font-size: 36px;
  }

  .card {
    padding: 30px;
  }
}

@media (max-width: 768px) {
  .content-hero h1 {
    font-size: 32px;
  }

  .content-main {
    padding: 30px 0 60px;
  }
}
