/* Enhanced Blog Post Styles */
:root {
  --exxon-red: #d5000a;
  --dark-text: #1a1a1a;
  --body-text: #4a4a4a;
  --bg-light: #f4f6f8;
  --white: #ffffff;
  --border-color: #e1e4e8;
  --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.05);
  --radius-md: 8px;
  --radius-lg: 12px;
}

.blog-post-section {
  padding: 80px 0;
  background-color: var(--bg-light);
  font-family: "EMprint-Regular", "Arial", sans-serif;
}

.blog-article {
  max-width: 1400px; /* Restored to full width */
  margin: 0 auto;
  background: var(--white);
  padding: 40px; /* Default for mobile */
  box-shadow: var(--shadow-soft);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

@media (min-width: 768px) {
  .blog-article {
    padding: 80px;
  }
}

.blog-header {
  text-align: center;
  margin-bottom: 60px;
  position: relative;
  padding-bottom: 30px;
}

.blog-header::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: var(--exxon-red);
  border-radius: 2px;
}

.blog-title {
  font-family: "EMprint-Semibold", "Arial Bold", sans-serif;
  font-size: 2.5rem;
  color: var(--dark-text);
  margin-bottom: 15px;
  line-height: 1.2;
}

.blog-subtitle {
  font-family: "EMprint-RegularItalic", "Arial Italic", sans-serif;
  font-size: 1.25rem;
  color: var(--body-text);
  font-weight: 400;
}

.blog-hero-placeholder {
  width: 100%;
  height: 400px;
  background: linear-gradient(135deg, #e0e0e0 0%, #f5f5f5 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #888;
  font-size: 1.2rem;
  border-radius: var(--radius-md);
  margin-bottom: 50px;
  position: relative;
  overflow: hidden;
}

.blog-hero-placeholder::before {
  content: "Image Placeholder";
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  opacity: 0.5;
}

.content-block {
  margin-bottom: 60px;
}

.section-title {
  font-family: "EMprint-Semibold", sans-serif;
  font-size: 1.8rem;
  color: var(--dark-text);
  margin-bottom: 25px;
  position: relative;
  padding-left: 20px;
  border-left: 4px solid var(--exxon-red);
}

.text-content {
  font-family: "EMprint-Regular", sans-serif;
  font-size: 1.125rem;
  line-height: 1.8;
  color: var(--body-text);
  margin-bottom: 20px;
}

/* Two Column Layout */
.grid-2-col {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}

@media (min-width: 900px) {
  .grid-2-col {
    grid-template-columns: 1.2fr 0.8fr;
  }
  .grid-2-col.reverse {
    grid-template-columns: 0.8fr 1.2fr;
  }
  .grid-2-col.reverse .text-col {
    order: 2;
  }
}

.image-placeholder-card {
  background-color: #f0f4f8;
  border-radius: var(--radius-md);
  min-height: 300px; /* Aspect ratio */
  display: flex;
  align-items: center;
  justify-content: center;
  color: #999;
  font-style: italic;
  border: 1px dashed #ced4da;
}

/* List Styling */
.styled-list {
  list-style: none;
  padding: 0;
}

.styled-list li {
  position: relative;
  padding-left: 35px;
  margin-bottom: 18px;
  font-size: 1.05rem;
  color: var(--body-text);
  line-height: 1.6;
}

.styled-list li::before {
  content: "▸";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--exxon-red);
  font-weight: bold;
  font-size: 1.2rem;
}

.styled-list strong {
  color: var(--dark-text);
  font-weight: 600;
}

/* Timeline Styling for Career */
.career-timeline {
  border-left: 3px solid #e1e4e8;
  padding-left: 30px;
  margin-left: 10px;
}
.timeline-item {
  margin-bottom: 30px;
  position: relative;
}
.timeline-item::before {
  content: "";
  position: absolute;
  left: -38px;
  top: 6px;
  width: 14px;
  height: 14px;
  background: var(--white);
  border: 3px solid var(--exxon-red);
  border-radius: 50%;
}

/* Stats Grid */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 30px;
  margin: 40px 0;
}

.stat-card {
  background: white;
  padding: 30px 20px;
  text-align: center;
  border-radius: var(--radius-md);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
  border-top: 4px solid var(--exxon-red);
}

.stat-card:hover {
  transform: translateY(-5px);
}

.stat-number {
  font-family: "EMprint-Bold", sans-serif;
  font-size: 2.5rem;
  color: var(--exxon-red);
  margin-bottom: 10px;
  line-height: 1;
}

.stat-label {
  font-size: 0.95rem;
  color: var(--body-text);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Highlight/Quote Box */
.highlight-box {
  background-color: #fff0f1; /* Very light red tin */
  border-left: 5px solid var(--exxon-red);
  padding: 40px;
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  margin: 40px 0;
}

.quote-text {
  font-family:
    "EMprint-RegularItalic", serif; /* Use serif or italic for quotes */
  font-size: 1.2rem;
  color: #555;
  margin-bottom: 15px;
  font-style: italic;
}

.quote-author {
  font-size: 0.95rem;
  color: #888;
  font-weight: 600;
  text-align: right;
}

/* Footer */
.blog-footer {
  margin-top: 60px;
  padding-top: 30px;
  border-top: 1px solid var(--border-color);
  text-align: center;
  color: #999;
  font-size: 0.9rem;
}

.share-links a {
  color: var(--exxon-red);
  text-decoration: none;
  font-weight: 600;
  margin: 0 10px;
  transition: color 0.2s;
}

.share-links a:hover {
  color: #b50008; /* Darker red */
}

/* Testimonial Section Styles */
.testimonials-section {
  background-color: #f9f9f9;
  padding: 40px;
  border-radius: var(--radius-md);
  margin-bottom: 60px;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 30px;
}

.testimonial-card {
  background: white;
  padding: 25px;
  border-radius: var(--radius-md);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
}

.testimonial-quote {
  font-family: "EMprint-RegularItalic", serif;
  font-size: 1rem;
  color: #555;
  margin-bottom: 20px;
  flex-grow: 1;
}

.testimonial-author-block {
  display: flex;
  align-items: center;
  margin-top: 15px;
  border-top: 1px solid #eee;
  padding-top: 15px;
}

.testimonial-avatar {
  background-color: var(--exxon-red);
  color: white;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  margin-right: 15px;
  font-size: 1rem;
}

.testimonial-info h4 {
  font-size: 0.95rem;
  font-weight: bold;
  margin: 0;
  color: #333;
}

.testimonial-info p {
  font-size: 0.85rem;
  color: #777;
  margin: 0;
}

/* Image Styles */
.content-image {
  width: 100%;
  height: auto;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
  max-width: 100%;
  display: block;
  object-fit: cover;
}

.blog-hero-image {
  width: 100%;
  max-height: 500px;
  object-fit: cover;
  border-radius: var(--radius-md);
  margin-bottom: 50px;
  box-shadow: var(--shadow-soft);
  display: block;
}
