@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@300;400;600;700;800;900&display=swap');

:root {
  --primary: #1a1a2e;
  --primary-light: #16213e;
  --accent: #e94560;
  --accent-dark: #c73650;
  --gold: #d4a853;
  --bg: #f8f9fa;
  --bg-white: #ffffff;
  --text: #1a1a2e;
  --text-light: #6c757d;
  --text-muted: #adb5bd;
  --border: #e9ecef;
  --shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 5px 25px rgba(0, 0, 0, 0.12);
  --radius: 12px;
  --radius-sm: 8px;
  --transition: 0.3s ease;
  --font: 'Cairo', sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.8;
  direction: rtl;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--transition);
}

img {
  max-width: 100%;
  height: auto;
}

ul {
  list-style: none;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
}

.section-title {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 30px;
  padding-bottom: 12px;
  border-bottom: 3px solid var(--accent);
  display: inline-block;
}

.category-badge {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  padding: 4px 14px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  transition: background var(--transition);
}

.category-badge:hover {
  background: var(--accent-dark);
}

.category-badge.politics { background: #2d5f8a; }
.category-badge.sports { background: #28a745; }
.category-badge.tech { background: #6f42c1; }
.category-badge.economy { background: #fd7e14; }
.category-badge.culture { background: #e83e8c; }
.category-badge.health { background: #20c997; }

.btn {
  display: inline-block;
  padding: 12px 32px;
  border-radius: var(--radius-sm);
  font-family: var(--font);
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  border: none;
  transition: all var(--transition);
}

.btn-primary {
  background: var(--accent);
  color: #fff;
}

.btn-primary:hover {
  background: var(--accent-dark);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(233, 69, 96, 0.4);
}

.btn-outline {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}

.btn-outline:hover {
  background: var(--primary);
  color: #fff;
}

/* ===== TOP BAR ===== */
.top-bar {
  background: var(--primary);
  color: #fff;
  padding: 8px 0;
  font-size: 0.85rem;
}

.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.top-bar-social a {
  color: #fff;
  margin-inline-start: 12px;
  font-size: 1rem;
  opacity: 0.8;
  transition: opacity var(--transition);
}

.top-bar-social a:hover {
  opacity: 1;
}

.top-bar-date {
  opacity: 0.8;
}

/* ===== HEADER / NAV ===== */
.header {
  background: var(--bg-white);
  box-shadow: var(--shadow);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 0;
  padding-bottom: 0;
  height: 70px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--primary);
}

.logo span {
  color: var(--accent);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-links a {
  padding: 8px 16px;
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
}

.nav-links a:hover,
.nav-links a.active {
  background: var(--accent);
  color: #fff;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.search-toggle {
  background: none;
  border: none;
  font-size: 1.2rem;
  cursor: pointer;
  color: var(--text);
  padding: 8px;
  border-radius: 50%;
  transition: all var(--transition);
}

.search-toggle:hover {
  background: var(--bg);
  color: var(--accent);
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--text);
}

/* ===== SEARCH OVERLAY ===== */
.search-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(26, 26, 46, 0.95);
  z-index: 2000;
  justify-content: center;
  align-items: flex-start;
  padding-top: 15vh;
}

.search-overlay.active {
  display: flex;
}

.search-overlay .search-container {
  width: 90%;
  max-width: 600px;
}

.search-overlay input {
  width: 100%;
  padding: 20px 25px;
  font-size: 1.2rem;
  font-family: var(--font);
  border: none;
  border-radius: var(--radius);
  outline: none;
  direction: rtl;
}

.search-close {
  position: absolute;
  top: 30px;
  left: 30px;
  background: none;
  border: none;
  color: #fff;
  font-size: 2rem;
  cursor: pointer;
}

.search-results {
  margin-top: 20px;
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  max-height: 50vh;
  overflow-y: auto;
}

.search-result-item {
  display: flex;
  gap: 15px;
  padding: 15px 20px;
  border-bottom: 1px solid var(--border);
  transition: background var(--transition);
}

.search-result-item:hover {
  background: var(--bg);
}

.search-result-item img {
  width: 80px;
  height: 60px;
  object-fit: cover;
  border-radius: var(--radius-sm);
  flex-shrink: 0;
}

.search-result-item h4 {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.search-result-item p {
  font-size: 0.8rem;
  color: var(--text-light);
}

/* ===== BREAKING NEWS TICKER ===== */
.ticker {
  background: var(--accent);
  color: #fff;
  padding: 10px 0;
  overflow: hidden;
}

.ticker .container {
  display: flex;
  align-items: center;
  gap: 15px;
}

.ticker-label {
  background: #fff;
  color: var(--accent);
  padding: 4px 16px;
  border-radius: 4px;
  font-weight: 800;
  font-size: 0.85rem;
  white-space: nowrap;
  flex-shrink: 0;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.7; }
}

.ticker-content {
  overflow: hidden;
  flex: 1;
  position: relative;
  height: 24px;
}

.ticker-track {
  display: flex;
  gap: 60px;
  position: absolute;
  white-space: nowrap;
  animation: ticker-scroll 30s linear infinite;
}

@keyframes ticker-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.ticker-track a {
  color: #fff;
  font-weight: 600;
  font-size: 0.9rem;
}

.ticker-track a:hover {
  text-decoration: underline;
}

/* ===== HERO SECTION ===== */
.hero {
  padding: 30px 0;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 20px;
  min-height: 450px;
}

.hero-main {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
}

.hero-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.hero-main:hover img {
  transform: scale(1.05);
}

.hero-main .hero-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 30px;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.85));
  color: #fff;
}

.hero-main .hero-overlay h2 {
  font-size: 1.6rem;
  font-weight: 800;
  margin-bottom: 10px;
  line-height: 1.5;
}

.hero-main .hero-overlay p {
  font-size: 0.9rem;
  opacity: 0.85;
  line-height: 1.6;
}

.hero-main .hero-overlay .category-badge {
  margin-bottom: 10px;
}

.hero-side {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.hero-side-card {
  position: relative;
  flex: 1;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
}

.hero-side-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.hero-side-card:hover img {
  transform: scale(1.05);
}

.hero-side-card .hero-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.85));
  color: #fff;
}

.hero-side-card .hero-overlay h3 {
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 1.5;
}

/* ===== LATEST NEWS ===== */
.latest-news {
  padding: 40px 0;
}

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

.news-card {
  background: var(--bg-white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: all var(--transition);
}

.news-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

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

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

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

.news-card-body {
  padding: 20px;
}

.news-card-body .category-badge {
  margin-bottom: 10px;
  font-size: 0.75rem;
}

.news-card-body h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 10px;
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.news-card-body h3 a:hover {
  color: var(--accent);
}

.news-card-body p {
  font-size: 0.88rem;
  color: var(--text-light);
  line-height: 1.7;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 15px;
}

.news-card-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: var(--text-muted);
  padding-top: 12px;
  border-top: 1px solid var(--border);
}

/* ===== CATEGORY SECTIONS ===== */
.category-section {
  padding: 40px 0;
}

.category-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 30px;
}

.category-main-card {
  display: flex;
  gap: 20px;
  background: var(--bg-white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  margin-bottom: 20px;
  transition: all var(--transition);
}

.category-main-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}

.category-main-card img {
  width: 280px;
  height: 200px;
  object-fit: cover;
  flex-shrink: 0;
}

.category-main-card-body {
  padding: 20px 20px 20px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.category-main-card-body h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 8px;
  line-height: 1.6;
}

.category-main-card-body h3 a:hover {
  color: var(--accent);
}

.category-main-card-body p {
  font-size: 0.88rem;
  color: var(--text-light);
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.category-main-card-meta {
  display: flex;
  gap: 15px;
  margin-top: 10px;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.sidebar {
  position: sticky;
  top: 90px;
}

.sidebar-widget {
  background: var(--bg-white);
  border-radius: var(--radius);
  padding: 25px;
  box-shadow: var(--shadow);
  margin-bottom: 25px;
}

.sidebar-widget h3 {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--accent);
}

.popular-item {
  display: flex;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
}

.popular-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.popular-item:first-child {
  padding-top: 0;
}

.popular-item-number {
  background: var(--accent);
  color: #fff;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.85rem;
  flex-shrink: 0;
}

.popular-item h4 {
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 1.5;
  cursor: pointer;
}

.popular-item h4:hover {
  color: var(--accent);
}

/* ===== NEWSLETTER ===== */
.newsletter {
  background: var(--primary);
  padding: 60px 0;
  color: #fff;
  text-align: center;
}

.newsletter h2 {
  font-size: 1.8rem;
  font-weight: 800;
  margin-bottom: 10px;
}

.newsletter p {
  opacity: 0.8;
  margin-bottom: 30px;
  font-size: 1rem;
}

.newsletter-form {
  display: flex;
  max-width: 500px;
  margin: 0 auto;
  gap: 10px;
}

.newsletter-form input {
  flex: 1;
  padding: 15px 20px;
  border: none;
  border-radius: var(--radius-sm);
  font-family: var(--font);
  font-size: 1rem;
  direction: rtl;
  outline: none;
}

.newsletter-form button {
  padding: 15px 30px;
  background: var(--accent);
  color: #fff;
  border: none;
  border-radius: var(--radius-sm);
  font-family: var(--font);
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: background var(--transition);
}

.newsletter-form button:hover {
  background: var(--accent-dark);
}

/* ===== CATEGORY TABS (Homepage) ===== */
.category-tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 25px;
  flex-wrap: wrap;
}

.category-tab {
  padding: 8px 20px;
  border-radius: 25px;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  border: 2px solid var(--border);
  background: var(--bg-white);
  color: var(--text);
  transition: all var(--transition);
  font-family: var(--font);
}

.category-tab:hover,
.category-tab.active {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}

.category-articles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

/* ===== ARTICLE PAGE ===== */
.article-page {
  padding: 40px 0;
}

.article-header {
  text-align: center;
  margin-bottom: 30px;
}

.article-header .category-badge {
  margin-bottom: 15px;
}

.article-header h1 {
  font-size: 2rem;
  font-weight: 800;
  line-height: 1.5;
  margin-bottom: 15px;
  color: var(--primary);
}

.article-meta {
  display: flex;
  justify-content: center;
  gap: 25px;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.article-featured-image {
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 30px;
  max-height: 500px;
}

.article-featured-image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
}

.article-content-grid {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 40px;
}

.article-body {
  background: var(--bg-white);
  padding: 40px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  font-size: 1.05rem;
  line-height: 2;
}

.article-body p {
  margin-bottom: 20px;
}

.article-share {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}

.article-share span {
  font-weight: 700;
  font-size: 0.9rem;
}

.share-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1rem;
  transition: all var(--transition);
  border: none;
  cursor: pointer;
}

.share-btn:hover {
  transform: translateY(-3px);
}

.share-btn.facebook { background: #1877f2; }
.share-btn.twitter { background: #1da1f2; }
.share-btn.whatsapp { background: #25d366; }
.share-btn.linkedin { background: #0077b5; }

/* ===== ABOUT PAGE ===== */
.page-header {
  background: var(--primary);
  color: #fff;
  padding: 60px 0;
  text-align: center;
}

.page-header h1 {
  font-size: 2.2rem;
  font-weight: 800;
  margin-bottom: 10px;
}

.page-header p {
  opacity: 0.8;
  font-size: 1.05rem;
}

.about-content {
  padding: 60px 0;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.about-text h2 {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 20px;
}

.about-text p {
  color: var(--text-light);
  margin-bottom: 15px;
  line-height: 1.9;
}

.about-image {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.about-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.team-section {
  padding: 40px 0 60px;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

.team-card {
  background: var(--bg-white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  text-align: center;
  padding: 25px;
  transition: all var(--transition);
}

.team-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.team-card-avatar {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  font-size: 2rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
}

.team-card h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 5px;
}

.team-card p {
  font-size: 0.85rem;
  color: var(--text-light);
}

/* ===== CONTACT PAGE ===== */
.contact-section {
  padding: 60px 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.contact-form {
  background: var(--bg-white);
  padding: 35px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.contact-form h2 {
  font-size: 1.4rem;
  font-weight: 800;
  margin-bottom: 25px;
  color: var(--primary);
}

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

.form-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 8px;
  font-size: 0.9rem;
  color: var(--text);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: var(--font);
  font-size: 0.95rem;
  direction: rtl;
  outline: none;
  transition: border-color var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--accent);
}

.form-group textarea {
  min-height: 150px;
  resize: vertical;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.contact-info-card {
  background: var(--bg-white);
  padding: 25px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  display: flex;
  gap: 15px;
  align-items: flex-start;
}

.contact-info-icon {
  width: 50px;
  height: 50px;
  background: var(--accent);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.contact-info-card h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 5px;
}

.contact-info-card p {
  font-size: 0.9rem;
  color: var(--text-light);
}

/* ===== FOOTER ===== */
.footer {
  background: var(--primary);
  color: #fff;
  padding: 50px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-about .logo {
  color: #fff;
  margin-bottom: 15px;
  font-size: 1.5rem;
}

.footer-about p {
  opacity: 0.7;
  line-height: 1.8;
  font-size: 0.9rem;
  margin-bottom: 15px;
}

.footer-social {
  display: flex;
  gap: 10px;
}

.footer-social a {
  width: 38px;
  height: 38px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: all var(--transition);
}

.footer-social a:hover {
  background: var(--accent);
}

.footer-col h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

.footer-col h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 40px;
  height: 2px;
  background: var(--accent);
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  opacity: 0.7;
  font-size: 0.9rem;
  transition: all var(--transition);
}

.footer-col ul li a:hover {
  opacity: 1;
  color: var(--accent);
  padding-right: 5px;
}

.footer-bottom {
  text-align: center;
  padding: 20px 0;
  margin-top: 20px;
  font-size: 0.85rem;
  opacity: 0.6;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero-side {
    flex-direction: row;
  }

  .news-grid,
  .category-articles {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .top-bar {
    display: none;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 70px;
    right: 0;
    left: 0;
    background: var(--bg-white);
    flex-direction: column;
    padding: 20px;
    box-shadow: var(--shadow-lg);
  }

  .nav-links.active {
    display: flex;
  }

  .mobile-menu-btn {
    display: block;
  }

  .hero-side {
    flex-direction: column;
  }

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

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

  .category-main-card {
    flex-direction: column;
  }

  .category-main-card img {
    width: 100%;
    height: 200px;
  }

  .category-main-card-body {
    padding: 15px;
  }

  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

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

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

  .article-featured-image img {
    height: 250px;
  }

  .article-body {
    padding: 25px;
  }

  .article-header h1 {
    font-size: 1.5rem;
  }

  .search-overlay input {
    font-size: 1rem;
    padding: 15px 20px;
  }

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

@media (max-width: 480px) {
  .team-grid {
    grid-template-columns: 1fr;
  }

  .hero-main .hero-overlay h2 {
    font-size: 1.2rem;
  }
}
