/* ═══════════════════════════════════════════
   PAGE-SPECIFIC STYLES 

═══════════════════════════════════════════ */

/* ─── HERO (page banner) ─── */
.page-hero {
  padding: 8rem 0 4rem;
  background: linear-gradient(135deg, var(--grn3) 0%, var(--sand) 100%); /* blue tint to grey */
  border-bottom: 1px solid var(--sand3);
}
.page-hero-sm { padding: 6rem 0 3rem; }

/* ─── BLOG CARDS ─── */
.blog-card {
  background: #fff;
  border: 1px solid var(--sand3);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform .3s var(--ease), box-shadow .3s, border-color .3s;
}
.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0,53,128,.1);
  border-color: var(--gld);   /* sky blue border on hover */
}
.blog-card-img {
  aspect-ratio: 16/9;
  background: var(--sand2);
  overflow: hidden;
}
.blog-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s var(--ease);
}
.blog-card:hover .blog-card-img img { transform: scale(1.05); }
.blog-card-content { padding: 1.5rem; }
.blog-meta {
  display: flex;
  gap: 1rem;
  font-size: .7rem;
  color: var(--stone);
  margin-bottom: .8rem;
}
.blog-card h3 {
  font-family: var(--display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: .8rem;
  line-height: 1.3;
}
.blog-card p {
  font-size: .85rem;
  color: var(--stone);
  line-height: 1.7;
  margin-bottom: 1rem;
}
.read-more {
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--bur);   /* orange read more */
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  transition: color .2s;
}
.read-more:hover { color: var(--bur2); }

/* ─── BLOG POST ─── */
.post-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 2rem;
}
.post-meta {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin: 1rem 0;
  font-size: .8rem;
  color: var(--stone);
}
.post-feature-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 2rem;
}
.post-content {
  max-width: 750px;
  margin: 0 auto;
}
.post-content h2 {
  font-family: var(--display);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--ink);
  margin: 2rem 0 1rem;
}
.post-content p {
  margin-bottom: 1.2rem;
  line-height: 1.9;
}
.post-content ul, .post-content ol {
  margin: 1rem 0 1rem 1.8rem;
  color: var(--stone);
}
.share-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin: 2rem 0;
}
.share-btn {
  padding: .5rem 1rem;
  border-radius: 100px;
  background: var(--grn3);   /* blue-tint share buttons */
  color: var(--grn);
  font-size: .75rem;
  font-weight: 600;
  transition: background .2s, color .2s;
}
.share-btn:hover { background: var(--grn); color: #fff; }
.author-box {
  background: var(--grn3);   /* blue tint author area */
  border-radius: var(--radius);
  padding: 1.5rem;
  display: flex;
  gap: 1.2rem;
  margin: 2rem 0;
  align-items: center;
  flex-wrap: wrap;
  border-left: 4px solid var(--bur);  /* orange left border accent */
}
.author-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--grn);   /* deep blue avatar */
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: bold;
}

/* ─── AUDIT TOOL ─── */
.audit-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: 0 20px 50px rgba(0,53,128,.08);
  border-top: 4px solid var(--bur);  /* orange top bar */
}
.audit-input-group {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin: 2rem 0;
}
.audit-input {
  flex: 1;
  padding: 1rem 1.2rem;
  border: 2px solid var(--sand3);
  border-radius: 100px;
  font-family: var(--body);
  font-size: .9rem;
  background: var(--sand);
  transition: border-color .2s;
}
.audit-input:focus {
  outline: none;
  border-color: var(--gld);   /* sky blue focus */
}
.audit-checklist {
  margin: 2rem 0;
}
.check-item {
  display: flex;
  align-items: center;
  gap: .8rem;
  padding: .8rem 0;
  border-bottom: 1px solid var(--sand3);
}
.check-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--grn3);   /* blue tint check icon */
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--grn);
}

/* ─── CAREERS ─── */
.job-card {
  background: #fff;
  border: 1px solid var(--sand3);
  border-radius: var(--radius);
  padding: 1.5rem;
  transition: all .3s;
}
.job-card:hover {
  border-color: var(--bur);   /* orange hover border */
  box-shadow: 0 8px 24px rgba(255,102,0,.12);
  transform: translateY(-2px);
}
.job-title {
  font-family: var(--display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: .5rem;
}
.job-meta {
  display: flex;
  gap: 1rem;
  font-size: .75rem;
  color: var(--stone);
  margin-bottom: 1rem;
}
.benefits-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  margin: 2rem 0;
}
.benefit {
  text-align: center;
  padding: 1.5rem;
  background: #fff;
  border-radius: var(--radius);
  border: 1px solid var(--sand3);
  transition: border-color .2s, box-shadow .2s;
}
.benefit:hover {
  border-color: var(--gld);
  box-shadow: 0 4px 16px rgba(0,153,204,.1);
}
.benefit-icon {
  width: 52px;
  height: 52px;
  background: var(--bur3);   /* orange tint icon bg */
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}

/* ─── SITEMAP ─── */
.sitemap-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}
.sitemap-col h4 {
  font-family: var(--display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--bur);   /* orange section headings */
  margin-bottom: 1rem;
}
.sitemap-col ul li {
  margin-bottom: .6rem;
}
.sitemap-col a {
  color: var(--stone);
  font-size: .9rem;
  transition: color .2s;
}
.sitemap-col a:hover { color: var(--grn); }  /* hover to deep blue */

/* ─── LEGAL PAGES (terms, privacy, etc) ─── */
.legal-content {
  max-width: 850px;
  margin: 0 auto;
}
.legal-content h1 {
  font-family: var(--display);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: .5rem;
}
.legal-content .last-updated {
  color: var(--stone);
  font-size: .8rem;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid var(--sand3);
}
.legal-content h2 {
  font-family: var(--display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--ink);
  margin: 2rem 0 1rem;
  padding-left: .8rem;
  border-left: 3px solid var(--bur);  /* orange left accent */
}
.legal-content h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--grn);   /* deep blue h3 */
  margin: 1.5rem 0 .8rem;
}
.legal-content p {
  margin-bottom: 1rem;
  line-height: 1.8;
}
.legal-content ul {
  margin: 1rem 0 1rem 1.8rem;
}

/* ─── 404 PAGE ─── */
.error-404 {
  text-align: center;
  padding: 5rem 0;
}
.error-code {
  font-family: var(--display);
  font-size: 8rem;
  font-weight: 800;
  color: var(--bur);   /* orange 404 */
  line-height: 1;
}
.error-search {
  max-width: 400px;
  margin: 2rem auto;
  display: flex;
  gap: .5rem;
}

/* ─── THANK YOU PAGE ─── */
.thankyou-card {
  text-align: center;
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 3rem;
  max-width: 600px;
  margin: 0 auto;
  border-top: 4px solid var(--bur);  /* orange top accent */
  box-shadow: 0 20px 60px rgba(0,53,128,.1);
}
.check-circle {
  width: 80px;
  height: 80px;
  background: var(--grn3);   /* blue tint circle */
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}
.check-circle svg {
  width: 40px;
  height: 40px;
  color: var(--grn);   /* deep blue checkmark */
}