/* Page Banner */
.page-banner {
  background-color: var(--primary-color);
  color: white;
  padding: 100px 0 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-banner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.page-banner h1 {
  font-family: var(--font-secondary);
  font-size: 3.5rem;
  margin-bottom: 15px;
  position: relative;
  display: inline-block;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.page-banner h1::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, var(--secondary-color), rgba(255, 255, 255, 0.7));
  border-radius: 2px;
}

.breadcrumb {
  display: flex;
  justify-content: center;
  gap: 10px;
  font-size: 1rem;
  margin-top: 20px;
}

.breadcrumb li::after {
  content: "/";
  margin-left: 10px;
}

.breadcrumb li:last-child::after {
  content: "";
}

.breadcrumb li a {
  color: rgba(255, 255, 255, 0.8);
  transition: all 0.3s ease;
}

.breadcrumb li a:hover {
  color: white;
  text-decoration: underline;
}

.breadcrumb li.active {
  color: var(--secondary-color);
  font-weight: 500;
}

/* News Filter */
.news-filter {
  background-color: white;
  padding: 0;
  position: relative;
  z-index: 10;
  margin-top: -30px;
  margin-bottom: 60px;
}

.filter-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  background-color: white;
  padding: 30px;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.filter-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.filter-group label {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-color);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.filter-group select {
  padding: 14px 20px;
  border: 1px solid var(--border-color);
  border-radius: 30px;
  font-size: 1rem;
  min-width: 220px;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%23005a87' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: calc(100% - 15px) center;
  background-size: 12px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.filter-group select:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(0, 90, 135, 0.1);
}

.search-group {
  display: flex;
  flex: 1;
  max-width: 400px;
  position: relative;
}

.search-group input {
  flex: 1;
  padding: 14px 20px;
  padding-right: 50px;
  border: 1px solid var(--border-color);
  border-radius: 30px;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.search-group input:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(0, 90, 135, 0.1);
}

.search-group button {
  position: absolute;
  right: 5px;
  top: 5px;
  background-color: var(--primary-color);
  color: white;
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.search-group button:hover {
  background-color: var(--primary-dark);
  transform: scale(1.05);
}

/* Featured News */
.featured-news {
  padding: 0 0 80px;
}

.featured-article {
  background-color: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
  display: grid;
  grid-template-columns: 1fr 1fr;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.featured-article:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

.featured-image {
  position: relative;
  height: 100%;
  overflow: hidden;
}

.featured-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.featured-article:hover .featured-image img {
  transform: scale(1.05);
}

.article-category {
  position: absolute;
  top: 20px;
  left: 20px;
  padding: 8px 20px;
  border-radius: 30px;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
  z-index: 2;
}

/* Category-specific styling with gradients */
.article-category.research {
  background: linear-gradient(135deg, #3a7bd5, #00d2ff);
  color: white;
}

.article-category.events {
  background: linear-gradient(135deg, #ff7e5f, #feb47b);
  color: white;
}

.article-category.students {
  background: linear-gradient(135deg, #11998e, #38ef7d);
  color: white!important;
}

/* Default category styling */
.article-category {
  background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
  color: white;
}

.featured-content {
  padding: 50px;
  display: flex;
  flex-direction: column;
}

.article-date {
  color: var(--text-lighter);
  font-size: 1rem;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.article-date i {
  color: var(--primary-light);
}

.featured-content h3 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: var(--text-color);
  line-height: 1.4;
  font-weight: 600;
  transition: all 0.3s ease;
}

.featured-article:hover .featured-content h3 {
  color: var(--primary-color);
}

.featured-content p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--text-light);
  margin-bottom: 25px;
}

.article-meta {
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
  flex-wrap: wrap;
}

.meta-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text-light);
  font-size: 0.95rem;
}

.meta-item i {
  color: var(--primary-color);
}

.featured-content .btn {
  align-self: flex-start;
  padding: 14px 30px;
  border-radius: 30px;
  font-weight: 600;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.featured-content .btn:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}

/* Latest News */
.latest-news {
  background-color: var(--bg-light);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

/* Add a subtle pattern background */
.latest-news::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23005a87' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.5;
  z-index: 0;
}

.latest-news .container {
  position: relative;
  z-index: 1;
}

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

.section-header h2 {
  font-family: var(--font-secondary);
  font-size: 2.8rem;
  color: var(--primary-color);
  margin-bottom: 15px;
  position: relative;
  display: inline-block;
}

.section-header h2::after {
  content: "";
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
  border-radius: 2px;
}

.section-header .view-all {
  position: absolute;
  right: 0;
  top: 15px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: 30px;
  background-color: white;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.section-header .view-all:hover {
  transform: translateX(5px);
  background-color: var(--primary-color);
  color: white;
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 60px;
}

.news-card {
  background-color: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: 1px solid rgba(0, 0, 0, 0.05);
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
  top: 0;
}

.news-card:hover {
  transform: translateY(-15px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.news-image {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.news-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.news-card:hover .news-image img {
  transform: scale(1.1);
}

.news-category {
  position: absolute;
  top: 15px;
  left: 15px;
  padding: 8px 16px;
  border-radius: 30px;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  z-index: 2;
}

.news-content {
  padding: 30px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.news-date {
  color: var(--text-lighter);
  font-size: 0.95rem;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.news-date i {
  color: var(--primary-light);
}

.news-content h3 {
  font-size: 1.4rem;
  margin-bottom: 15px;
  color: var(--text-color);
  transition: all 0.3s ease;
  line-height: 1.4;
  font-weight: 600;
}

.news-card:hover .news-content h3 {
  color: var(--primary-color);
}

.news-content p {
  color: var(--text-light);
  margin-bottom: 25px;
  line-height: 1.7;
  flex-grow: 1;
}

.read-more {
  font-weight: 600;
  color: var(--primary-color);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding-bottom: 5px;
  border-bottom: 2px solid transparent;
  align-self: flex-start;
  transition: all 0.3s ease;
  margin-top: auto;
}

.read-more:hover {
  gap: 12px;
  border-bottom: 2px solid var(--primary-color);
}

.pagination {
  display: flex;
  justify-content: center;
  gap: 10px;
}

.pagination-btn {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: white;
  border: none;
  border-radius: 50%;
  font-weight: 600;
  color: var(--text-color);
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
  font-size: 1.1rem;
}

.pagination-btn:hover {
  background-color: var(--bg-light);
  transform: translateY(-3px);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
}

.pagination-btn.active {
  background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
  color: white;
  box-shadow: 0 8px 15px rgba(0, 90, 135, 0.2);
}

.pagination-btn.next {
  width: auto;
  padding: 0 25px;
  border-radius: 25px;
}

/* Upcoming Events */
.upcoming-events {
  padding: 100px 0;
  background-color: white;
  position: relative;
}

.upcoming-events::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23005a87' fill-opacity='0.03' fill-rule='evenodd'/%3E%3C/svg%3E");
}

.events-list {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.event-item {
  background-color: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  display: flex;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: 1px solid rgba(0, 0, 0, 0.05);
  position: relative;
}

.event-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 100%;
  background: linear-gradient(to bottom, var(--primary-color), var(--primary-light));
  opacity: 0;
  transition: all 0.3s ease;
}

.event-item:hover {
  transform: translateY(-10px) translateX(5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.event-item:hover::before {
  opacity: 1;
}

.event-date {
  background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
  color: white;
  padding: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 150px;
  position: relative;
  overflow: hidden;
}

.event-date::before {
  content: "";
  position: absolute;
  top: -20px;
  left: -20px;
  width: 60px;
  height: 60px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
}

.event-date::after {
  content: "";
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 60px;
  height: 60px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
}

.date-box {
  text-align: center;
  position: relative;
  z-index: 1;
}

.month {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 5px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.day {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1;
}

.event-details {
  padding: 30px;
  flex: 1;
}

.event-details h3 {
  font-size: 1.5rem;
  color: var(--text-color);
  margin-bottom: 15px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.event-item:hover .event-details h3 {
  color: var(--primary-color);
}

.event-meta {
  display: flex;
  gap: 25px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.event-meta .meta-item {
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 8px;
}

.event-meta .meta-item i {
  color: var(--primary-color);
}

.event-details p {
  color: var(--text-color);
  margin-bottom: 25px;
  line-height: 1.7;
  font-size: 1.05rem;
}

.event-details .btn {
  padding: 12px 25px;
  border-radius: 30px;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.event-details .btn:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

/* Newsletter */
.newsletter-section {
  background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
  color: white;
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.newsletter-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg width='52' height='26' viewBox='0 0 52 26' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M10 10c0-2.21-1.79-4-4-4-3.314 0-6-2.686-6-6h2c0 2.21 1.79 4 4 4 3.314 0 6 2.686 6 6 0 2.21 1.79 4 4 4 3.314 0 6 2.686 6 6 0 2.21 1.79 4 4 4v2c-3.314 0-6-2.686-6-6 0-2.21-1.79-4-4-4-3.314 0-6-2.686-6-6zm25.464-1.95l8.486 8.486-1.414 1.414-8.486-8.486 1.414-1.414z' /%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.newsletter-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 60px;
  position: relative;
  z-index: 1;
}

.newsletter-text {
  flex: 1;
}

.newsletter-text h2 {
  font-family: var(--font-secondary);
  font-size: 2.5rem;
  margin-bottom: 20px;
  position: relative;
  display: inline-block;
  padding-bottom: 15px;
}

.newsletter-text h2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 80px;
  height: 3px;
  background-color: var(--secondary-color);
  border-radius: 1.5px;
}

.newsletter-text p {
  font-size: 1.2rem;
  opacity: 0.9;
  line-height: 1.7;
}

.newsletter-form {
  flex: 1;
  background-color: rgba(255, 255, 255, 0.1);
  padding: 40px;
  border-radius: 16px;
  backdrop-filter: blur(10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.form-group {
  display: flex;
  margin-bottom: 20px;
}

.form-group input {
  flex: 1;
  padding: 16px 20px;
  border: none;
  border-radius: 30px 0 0 30px;
  font-size: 1rem;
  background-color: rgba(255, 255, 255, 0.9);
  transition: all 0.3s ease;
}

.form-group input:focus {
  outline: none;
  background-color: white;
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.2);
}

.form-group .btn {
  border-radius: 0 30px 30px 0;
  padding: 0 30px;
  font-weight: 600;
  background-color: var(--secondary-color);
  color: var(--text-color);
  border: none;
  transition: all 0.3s ease;
}

.form-group .btn:hover {
  background-color: white;
  transform: translateX(5px);
}

.form-check {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-top: 10px;
}

.form-check input {
  margin-top: 5px;
  width: 18px;
  height: 18px;
  accent-color: var(--secondary-color);
}

.form-check label {
  font-size: 0.95rem;
  opacity: 0.9;
  line-height: 1.5;
}

.form-check a {
  color: var(--secondary-color);
  text-decoration: underline;
  transition: all 0.3s ease;
}

.form-check a:hover {
  color: white;
}

/* Animation Classes */
.fade-in {
  animation: fadeIn 0.8s ease forwards;
}

.fade-in-up {
  animation: fadeInUp 0.8s ease forwards;
}

.fade-in-left {
  animation: fadeInLeft 0.8s ease forwards;
}

.fade-in-right {
  animation: fadeInRight 0.8s ease forwards;
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Responsive Styles */
@media (max-width: 1200px) {
  .news-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .newsletter-content {
    flex-direction: column;
    text-align: center;
    gap: 40px;
  }

  .newsletter-text h2::after {
    left: 50%;
    transform: translateX(-50%);
  }
}

@media (max-width: 992px) {
  .filter-container {
    flex-direction: column;
    align-items: stretch;
  }

  .search-group {
    max-width: none;
  }

  .featured-article {
    grid-template-columns: 1fr;
  }

  .featured-image {
    height: 350px;
  }

  .featured-content {
    padding: 40px;
  }

  .featured-content h3 {
    font-size: 1.8rem;
  }

  .event-item {
    flex-direction: column;
  }

  .event-date {
    padding: 20px;
    flex-direction: row;
    justify-content: center;
    min-width: auto;
  }

  .date-box {
    display: flex;
    align-items: center;
    gap: 15px;
  }

  .month,
  .day {
    margin: 0;
  }
}

@media (max-width: 768px) {
  .page-banner h1 {
    font-size: 2.8rem;
  }

  .news-grid {
    grid-template-columns: 1fr;
  }

  .article-meta {
    flex-direction: column;
    gap: 10px;
  }

  .event-meta {
    flex-direction: column;
    gap: 10px;
  }

  .section-header h2 {
    font-size: 2.2rem;
  }

  .section-header .view-all {
    position: relative;
    display: inline-flex;
    margin-top: 20px;
    right: auto;
    top: auto;
  }

  .section-header {
    text-align: center;
  }
}

@media (max-width: 576px) {
  .page-banner {
    padding: 80px 0 40px;
  }

  .page-banner h1 {
    font-size: 2.2rem;
  }

  .filter-group select {
    min-width: auto;
    width: 100%;
  }

  .form-group {
    flex-direction: column;
  }

  .form-group input {
    border-radius: var(--border-radius);
    margin-bottom: 15px;
  }

  .form-group .btn {
    border-radius: var(--border-radius);
    width: 100%;
    padding: 14px;
  }

  .featured-content {
    padding: 30px;
  }

  .featured-content h3 {
    font-size: 1.5rem;
  }

  .pagination {
    flex-wrap: wrap;
    justify-content: center;
  }
}

