/* Basic Layout */
.main-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}


/* WHO ARE WE */
.who-are-we {
  margin-bottom: 40px;
}
.who-are-we h2 {
  font-size: 2rem;
  color: #fefefe;
  margin-bottom: 15px;
  text-align: center;
}
.who-content {
  display: flex;
  gap: 20px;
  align-items: center;
  background-color: #121212; /* Optional if you want a dark background behind text+image */
  border-radius: 8px;        /* Matches your card style */
  padding: 20px;             /* Adds spacing around the content */
}
.who-content img {
  max-width: 50%;  /* Adjust if you want it smaller or bigger */
  border-radius: 5px;
}
.who-content p {
  color: #ccc;
  margin: 0;
  flex: 1; /* So the text occupies remaining space */
}



/* WHAT WE MAKE */
.what-we-make {
  margin-bottom: 40px;
}
.what-we-make h2 {
  font-size: 2rem;
  color: #fefefe;
  margin-bottom: 15px;
  text-align: center; /* Center the heading if you want */
}
.three-columns {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}
.three-columns > div {
  background-color: #1a1a1a;
  border-radius: 8px;
  text-align: center;
  padding: 20px;
  box-shadow: 0 0 10px rgba(0,0,0,0.3);
}
.three-columns img {
  width: 100%;
  height: auto;
  border-radius: 5px;
  margin-bottom: 10px;
}
.three-columns h3 {
  color: #fefefe;
  margin-top: 0;
}
.three-columns p {
  color: #ccc;
}
/* PROGRAMS SECTION */
.programs {
  margin-bottom: 40px;
}
.programs h2 {
  font-size: 2rem;
  color: #fefefe;
  margin-bottom: 15px;
  text-align: center; /* Center the heading */
}
.programs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}


.news-updates {
    margin-bottom: 40px;
}
.news-updates h2 {
    font-size: 2rem;
    color: #ffffff; /* or #ffd700, depending on your design */
    margin-bottom: 15px;
    text-align: center; /* optional */
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}


.post-card {
  background-color: #1a1a1a;
  padding: 20px;
  border-radius: 8px;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
  text-align: center;
}
.post-card:hover {
  transform: scale(1.02);
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.5);
}
.post-card img {
  width: 85px;
  height: auto;
  max-width: 100%;
  border-radius: 5px;
  margin-bottom: 10px;
}
.post-card h3 {
  color: #ffd700;
  margin-top: 0;
  margin-bottom: 5px;
}
.post-card p {
  color: #ccc;
  margin-top: 5px;
}
.post-card a {
  text-decoration: none;
  color: inherit;
  display: block; /* Make entire card clickable if you want */
}
/* Make entire card clickable if desired */
.post-card a {
    text-decoration: none;
    color: inherit;
    display: block;
}



/* .post-card styles already exist. If you want them identical, you can reuse them. */


/* Responsive Adjustments */
@media (max-width: 768px) {
    .who-content {
        flex-direction: column;
    }
    .three-columns {
        grid-template-columns: 1fr; /* Stack columns on mobile */
    }
}
