/* GENERAL SETTINGS */
body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  background: #0f1419;
  color: #e7e9ea;
  line-height: 1.6;
}

/* HERO SECTIONS */
.blog-hero,
.page-hero.medium {
  position: relative;
  height: 50vh;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.blog-hero-overlay,
.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
}
.blog-hero-content,
.page-hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: auto;
  padding: 1rem;
}
.blog-hero h1,
.page-hero h1 {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}
.blog-hero p,
.page-hero p {
  font-size: 1.1rem;
  line-height: 1.4;
  color: #ccc;
}

/* CATEGORY BAR */
.category-bar ul {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  list-style: none;
  padding: 1rem;
  margin: 0;
  background: #141b21;
}
.category-bar li {
  background: #2b3642;
  color: #f4bf4f;
  padding: 0.5rem 1rem;
  border-radius: 6px;
  font-size: 0.9rem;
}

/* FEATURED ARTICLE */
.featured-article {
  display: flex;
  flex-wrap: wrap;
  background: #161b20;
  border: 1px solid #2a323b;
  border-radius: 8px;
  overflow: hidden;
  margin: 2rem auto;
  max-width: 1100px;
}
.featured-article img {
  width: 100%;
  max-height: 300px;
  object-fit: cover;
}
.featured-content {
  padding: 1.5rem;
}
.featured-content h2 {
  margin: 0 0 0.5rem;
}
.featured-content p {
  margin: 0 0 1rem;
}
.btn-primary {
  background: #f4bf4f;
  color: #0f1419;
  padding: 0.75rem 1.5rem;
  border-radius: 6px;
  font-weight: 600;
  text-decoration: none;
}
.btn-primary:hover {
  opacity: 0.9;
}
.btn-outline {
  border: 1px solid #f4bf4f;
  padding: 0.75rem 1.5rem;
  border-radius: 6px;
  font-weight: 600;
  text-decoration: none;
  color: #f4bf4f;
}
.btn-outline:hover {
  background: rgba(244, 191, 79, 0.1);
}

/* BLOG GRID */
.blog-grid-section h2 {
  text-align: center;
  margin: 2rem 0 1rem;
}
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  width: 90%;
  max-width: 1100px;
  margin: auto;
}
.blog-card {
  display: block;
  background: #161b20;
  border: 1px solid #2a323b;
  border-radius: 8px;
  overflow: hidden;
  color: inherit;
  text-decoration: none;
}
.blog-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}
.blog-card h3 {
  margin: 0;
  padding: 0.75rem 1rem 0;
  font-size: 1.3rem;
  color: #f4bf4f;
}
.blog-card p {
  padding: 0.5rem 1rem 1rem;
  font-size: 0.95rem;
  line-height: 1.4;
  color: #b0b5bc;
}

/* PODCAST SECTION */
.podcast-promo {
  background: #141b21;
  padding: 3rem 1rem;
  text-align: center;
}
.podcast-promo h2 {
  margin: 0 0 0.5rem;
}
.podcast-promo p {
  margin: 0 0 1rem;
  color: #b0b5bc;
}

/* AUTHOR BLOCK */
.author-block {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  background: #161b20;
  border: 1px solid #2a323b;
  border-radius: 8px;
  padding: 1.5rem;
  margin: 2rem auto;
  width: 90%;
  max-width: 800px;
}
.author-photo {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 50%;
}
.author-block h3 {
  margin: 0 0 0.25rem;
}

/* FOOTER */
.site-footer {
  margin-top: 3rem;
  border-top: 1px solid #222;
  padding: 3rem 1rem;
  background: #0f1419;
}
.footer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: space-between;
  max-width: 1100px;
  margin: auto;
}
.footer-grid ul {
  list-style: none;
  padding: 0;
}
.footer-grid li {
  margin-bottom: 0.6rem;
}
.footer-grid a {
  color: #f4bf4f;
  text-decoration: none;
}
.footer-grid a:hover {
  text-decoration: underline;
}
.site-footer p {
  text-align: center;
  margin-top: 1.5rem;
  color: #b0b5bc;
  font-size: 0.85rem;
}

/* CONTACT PAGE STYLES */
.contact-intro,
.contact-details,
.contact-form-section,
.social-section {
  padding: 3rem 0;
}

.contact-intro .container,
.contact-details .container,
.contact-form-section .container,
.social-section .container {
  max-width: 900px;
  margin: auto;
  padding: 0 1rem;
}

.contact-block {
  margin-bottom: 2rem;
}

.contact-block h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-form .form-row {
  display: flex;
  flex-direction: column;
}

.contact-form label {
  font-size: 0.9rem;
  margin-bottom: 0.25rem;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  padding: 0.75rem;
  border: 1px solid #444;
  border-radius: 6px;
  background: #222;
  color: #e7e9ea;
}

.contact-form textarea {
  resize: vertical;
}

.social-list {
  list-style: none;
  display: flex;
  gap: 1.5rem;
  padding: 0;
  margin: 1rem 0;
}

.social-list li a {
  color: #f4bf4f;
  text-decoration: none;
}

.social-list li a:hover {
  text-decoration: underline;
}