:root {
  --primary: #0b3c74;
  --secondary: #ffffff;
  --accent: #f5f5f5;
  --dark: #0a1f33;
  --muted: #6b7c93;
}

/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Georgia", "Times New Roman", serif;
}

body {
  background: var(--accent);
  color: var(--dark);
  line-height: 1.8;
  font-size: 16px;
}

/* ===== HERO ===== */
.about-hero {
  position: relative;
  height: 480px;
  background: url("../images/bg1.jpg") center / cover no-repeat;
  display: flex;
  align-items: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    rgba(11, 60, 116, 0.92),
    rgba(11, 60, 116, 0.75)
  );
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  padding: 0 24px;
  margin: auto 20px;
  color: #fff;
}

.hero-tagline {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.85rem;
  opacity: 0.9;
}

.about-hero h1 {
  font-size: 3.8rem;
  margin: 16px 0;
  line-height: 1.1;
}

.about-hero p {
  max-width: 650px;
  font-size: 1.15rem;
}

/* ===== PAGE LAYOUT (EXTENDED) ===== */
.page-layout {
  display: flex;
  gap: 48px;
  max-width: 1600px;           /* wider than before */
  margin: auto;
  padding: 60px 40px 60px 60px;
}

/* MAIN CONTENT (NEWS DOMINANT) */
.main-content {
  flex: 4;                     /* more space for news */
}

/* ===== SECTION TITLES ===== */
.section-title {
  font-size: 2.2rem;
  margin-bottom: 40px;
  text-align: center;
  color: var(--primary);
}

/* ===== NEWS GRID ===== */
.news-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-areas:
    "featured featured"
    "column   column";
  gap: 40px;
  width: 100%;
}

.news-featured {
  grid-area: featured;
  border-bottom: 2px solid var(--primary);
  padding-bottom: 30px;
}

.news-featured img {
  height: 380px;
}

.news-featured h3 {
  font-size: 2.3rem;
}

/* COLUMN NEWS */
.news-column {
  grid-area: column;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.news-column .news-card img {
  height: 160px;
}

/* ===== NEWS CARDS ===== */
.news-card {
  background: var(--secondary);
  border: 1px solid #ccc;
  padding: 16px;
  display: flex;
  flex-direction: column;
  cursor: pointer;
  transition: transform 0.3s, box-shadow 0.3s;
}

.news-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 24px rgba(0,0,0,0.15);
}

.news-card img {
  width: 100%;
  height: 210px;
  object-fit: cover;
  margin-bottom: 14px;
}

.news-card h3 {
  font-size: 1.45rem;
  margin-bottom: 8px;
  color: var(--primary);
}

.news-card p {
  font-size: 0.95rem;
}

/* ===== NEWS DETAILS ===== */
.news-detail {
  display: none;
  max-width: 1050px;          /* wider reading area */
  margin: 40px auto;
  background: var(--secondary);
  border: 1px solid #ccc;
  padding: 36px;
  border-radius: 8px;
}

.news-detail.active {
  display: block;
}

.news-detail img {
  width: 100%;
  max-height: 420px;
  object-fit: cover;
  margin-bottom: 22px;
}

.news-detail h2 {
  font-size: 2.1rem;
  margin-bottom: 16px;
  color: var(--primary);
}

.news-detail p {
  margin-bottom: 18px;
}

/* ===== BUTTONS ===== */
.btn {
  background: var(--primary);
  color: #fff;
  padding: 10px 22px;
  text-decoration: none;
  font-weight: 700;
  border-radius: 4px;
}

.btn:hover {
  background: #06224c;
}

/* ===== FACEBOOK ASIDE (EDGE-ALIGNED) ===== */
.fb-aside {
  flex: 1.2;
  background: var(--secondary);
  border: 1px solid #ccc;
  padding: 20px 16px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  position: sticky;
  top: 120px;
  align-self: flex-start;

  /* PUSH TO RIGHT EDGE */
  margin-right: -30px;
}

.fb-aside iframe {
  width: 100%;
  border: none;
}

/* ===== RESPONSIVE ===== */
@media screen and (max-width: 1200px) {
  .page-layout {
    padding: 50px 30px;
  }

  .fb-aside {
    margin-right: 0;
  }
}

@media screen and (max-width: 992px) {
  .page-layout {
    flex-direction: column;
  }

  .fb-aside {
    position: static;
    margin-right: 0;
  }

  .news-grid {
    grid-template-columns: 1fr;
  }
}

@media screen and (max-width: 768px) {
  .about-hero h1 {
    font-size: 2.6rem;
  }

  .news-card img {
    height: 180px;
  }

  .news-detail img {
    max-height: 260px;
  }
}
