.mission-statement {
  margin: 60px 0;
  padding: 60px 0;
  border-top: 1px solid #e5e5e5;
  border-bottom: 1px solid #e5e5e5;
}

.mission-content {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.mission-content h2 {
  font-size: 1.8rem;
  font-weight: 300;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 30px;
  color: #000000;
}

.mission-content p {
  font-size: 1.1rem;
  font-weight: 300;
  line-height: 2;
  color: #666666;
}

.latest-news-section {
  margin-bottom: 80px;
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 35px;
}

.news-card {
  background: #ffffff;
  border: 1px solid #e5e5e5;
  overflow: hidden;
  transition: all 0.3s ease;
}

.news-card:hover {
  border-color: #000000;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.news-image {
  width: 100%;
  height: 220px;
  overflow: hidden;
  background: #f5f5f5;
}

.news-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease, filter 0.3s ease;
  filter: grayscale(100%);
}

.news-card:hover .news-image img {
  transform: scale(1.05);
  filter: grayscale(0%);
}

.news-content {
  padding: 25px;
}

.news-date {
  font-size: 0.75rem;
  font-weight: 300;
  color: #999999;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 12px;
}

.news-content h3 {
  font-size: 1.2rem;
  font-weight: 300;
  letter-spacing: 0.3px;
  margin-bottom: 12px;
  line-height: 1.5;
}

.news-content h3 a {
  color: #000000;
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.news-content h3 a:hover {
  opacity: 0.6;
}

.news-content p {
  font-size: 0.95rem;
  color: #666666;
  font-weight: 300;
  line-height: 1.7;
  margin-bottom: 15px;
}

.news-source {
  font-size: 0.8rem;
  color: #999999;
  font-weight: 300;
  font-style: italic;
  padding-top: 12px;
  border-top: 1px solid #f0f0f0;
}

.news-view-all {
  text-align: center;
  margin-top: 40px;
}

.view-all-link {
  display: inline-block;
  color: #000000;
  font-size: 0.9rem;
  font-weight: 300;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-decoration: none;
  padding: 14px 32px;
  border: 1px solid #000000;
  transition: all 0.3s ease;
}

.view-all-link:hover {
  background: #000000;
  color: #ffffff;
}

.featured-section {
  margin-bottom: 80px;
}

.featured-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 40px;
}

.featured-card {
  background: #ffffff;
  border: 1px solid #e5e5e5;
  overflow: hidden;
  transition: border-color 0.3s ease;
}

.featured-card:hover {
  border-color: #000000;
}

.featured-image {
  position: relative;
  width: 100%;
  height: 300px;
  overflow: hidden;
  background: #f5f5f5;
}

.featured-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%);
  transition: filter 0.3s ease;
}

.featured-card:hover .featured-image img {
  filter: grayscale(0%);
}

.featured-label {
  position: absolute;
  top: 20px;
  left: 20px;
  background: #ffffff;
  color: #000000;
  padding: 8px 16px;
  font-size: 0.7rem;
  font-weight: 300;
  letter-spacing: 1px;
  text-transform: uppercase;
  border: 1px solid #000000;
}

.featured-content {
  padding: 30px;
}

.category-badge {
  display: inline-block;
  padding: 6px 12px;
  background: transparent;
  color: #000000;
  font-size: 0.7rem;
  font-weight: 300;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 15px;
  border: 1px solid #000000;
}

.featured-content h3 {
  font-size: 1.4rem;
  font-weight: 300;
  letter-spacing: 0.5px;
  margin-bottom: 15px;
  line-height: 1.4;
}

.featured-content h3 a {
  color: #000000;
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.featured-content h3 a:hover {
  opacity: 0.5;
}

.featured-content p {
  color: #666666;
  font-weight: 300;
  line-height: 1.8;
  margin-bottom: 20px;
}

.featured-meta {
  padding-top: 15px;
  border-top: 1px solid #e5e5e5;
}

.featured-meta .date {
  color: #999999;
  font-size: 0.85rem;
  font-weight: 300;
  letter-spacing: 0.5px;
}

.categories-section {
  margin-bottom: 80px;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
}

.category-box {
  display: block;
  padding: 40px 30px;
  background: #ffffff;
  border: 1px solid #e5e5e5;
  text-decoration: none;
  transition: all 0.5s ease;
  position: relative;
  overflow: hidden;
}

.category-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #239F40 0%, #ffffff 50%, #DA0000 100%);
  opacity: 0;
  transition: opacity 0.5s ease;
  z-index: 0;
  pointer-events: none;
}

.category-box:hover::before {
  opacity: 1;
}

.category-box:hover {
  border-color: #239F40;
  box-shadow: 0 4px 20px rgba(35, 159, 64, 0.2);
}

.category-box h3 {
  font-size: 1.2rem;
  font-weight: 300;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #000000;
  margin-bottom: 10px;
  transition: all 0.5s ease;
  position: relative;
  z-index: 1;
}

.category-box:hover h3 {
  color: #000000;
  font-weight: 400;
}

.category-box p {
  font-size: 0.9rem;
  font-weight: 300;
  color: #666666;
  line-height: 1.6;
  transition: all 0.5s ease;
  position: relative;
  z-index: 1;
}

.category-box:hover p {
  color: #000000;
}

.category-arrow {
  position: absolute;
  bottom: 20px;
  right: 30px;
  font-size: 1.5rem;
  color: #000000;
  transition: all 0.5s ease;
  z-index: 1;
}

.category-box:hover .category-arrow {
  color: #DA0000;
  transform: translateX(5px);
}

.recent-updates {
  margin-bottom: 80px;
}

.updates-list {
  display: grid;
  gap: 30px;
}

.update-item {
  padding: 30px;
  background: #ffffff;
  border: 1px solid #e5e5e5;
  transition: border-color 0.3s ease;
}

.update-item:hover {
  border-color: #000000;
}

.update-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
  flex-wrap: wrap;
  gap: 10px;
}

.update-date {
  color: #999999;
  font-size: 0.85rem;
  font-weight: 300;
  letter-spacing: 0.5px;
}

.update-item h3 {
  font-size: 1.3rem;
  font-weight: 300;
  letter-spacing: 0.5px;
  margin-bottom: 12px;
}

.update-item h3 a {
  color: #000000;
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.update-item h3 a:hover {
  opacity: 0.5;
}

.update-item p {
  color: #666666;
  font-weight: 300;
  line-height: 1.8;
  margin-bottom: 20px;
}

.read-link {
  display: inline-block;
  color: #000000;
  font-size: 0.85rem;
  font-weight: 300;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-decoration: none;
  border-bottom: 1px solid #000000;
  padding-bottom: 2px;
  transition: opacity 0.3s ease;
}

.read-link:hover {
  opacity: 0.5;
}

.newsletter-section {
  margin-bottom: 80px;
}

.newsletter-box {
  padding: 60px;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  border: 1px solid #e5e5e5;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.newsletter-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #239F40 0%, #DA0000 100%);
}

.newsletter-box h2 {
  font-size: 1.8rem;
  font-weight: 300;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 20px;
  color: #000000;
}

.newsletter-description {
  font-size: 1.05rem;
  font-weight: 300;
  line-height: 1.9;
  color: #555555;
  max-width: 800px;
  margin: 0 auto 35px;
}

.newsletter-description strong {
  font-weight: 500;
  color: #000000;
}

.subscription-form {
  max-width: 600px;
  margin: 0 auto;
}

.subscription-input-group {
  display: flex;
  gap: 0;
  margin-bottom: 15px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.subscription-input-group input {
  flex: 1;
  padding: 18px 24px;
  border: 1px solid #e5e5e5;
  border-right: none;
  font-size: 1rem;
  font-weight: 300;
  font-family: inherit;
  transition: border-color 0.3s ease;
}

.subscription-input-group input:focus {
  outline: none;
  border-color: #000000;
}

.subscription-input-group input::placeholder {
  color: #999999;
  font-weight: 300;
}

.subscription-btn {
  padding: 18px 35px;
  background: #000000;
  color: #ffffff;
  border: 1px solid #000000;
  font-size: 0.95rem;
  font-weight: 300;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.subscription-btn:hover {
  background: #333333;
}

.subscription-btn:disabled {
  background: #cccccc;
  border-color: #cccccc;
  cursor: not-allowed;
}

.subscription-status {
  margin-bottom: 15px;
  padding: 15px;
  font-size: 0.95rem;
  font-weight: 300;
  display: none;
}

.subscription-status.success {
  display: block;
  background: #f0fff0;
  border: 1px solid #239F40;
  color: #239F40;
}

.subscription-status.error {
  display: block;
  background: #fff0f0;
  border: 1px solid #DA0000;
  color: #DA0000;
}

.subscription-note {
  font-size: 0.85rem;
  color: #999999;
  font-weight: 300;
  margin-top: 10px;
}

.disclaimer-section {
  margin-bottom: 60px;
}

.disclaimer-box {
  padding: 40px;
  background: #fafafa;
  border: 1px solid #e5e5e5;
  text-align: center;
}

.disclaimer-box h3 {
  font-size: 1rem;
  font-weight: 300;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #000000;
  margin-bottom: 15px;
}

.disclaimer-box p {
  font-size: 0.9rem;
  font-weight: 300;
  color: #666666;
  line-height: 1.8;
  max-width: 800px;
  margin: 0 auto;
}

/* Dynasty Portraits in Hero */
.dynasty-portraits {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 60px;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 20px;
}

.portrait-frame {
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.3s ease;
}

.portrait-frame:hover {
  transform: translateY(-10px);
}

.portrait-image {
  width: 100%;
  max-width: 320px;
  aspect-ratio: 3/4;
  overflow: hidden;
  background: #f5f5f5;
  margin-bottom: 20px;
  border: 1px solid #e5e5e5;
}

.portrait-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: filter 0.3s ease;
  filter: grayscale(100%);
}

/* Keep Reza Pahlavi (first portrait) in color */
.portrait-frame:first-child .portrait-image img {
  filter: grayscale(0%);
}

.portrait-frame:hover .portrait-image img {
  filter: grayscale(0%);
}

.portrait-name {
  text-align: center;
  font-size: 1rem;
  font-weight: 400;
  color: #000000;
  letter-spacing: 0.5px;
}

/* Hero Banner Container Adjustments */
.hero-banner .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 100%;
}

.hero-banner h1 {
  margin-bottom: 15px;
}

.hero-banner > .container > p {
  margin-bottom: 50px;
}

/* Tablet: Stack vertically */
@media (max-width: 992px) {
  .dynasty-portraits {
    grid-template-columns: 1fr;
    gap: 40px;
    max-width: 400px;
    padding: 0 20px;
  }
  
  .portrait-image {
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .featured-grid,
  .category-grid,
  .news-grid {
    grid-template-columns: 1fr;
  }

  .mission-statement {
    margin: 40px 0;
    padding: 40px 0;
  }

  .mission-content h2 {
    font-size: 1.5rem;
  }

  .mission-content p {
    font-size: 1rem;
  }

  .latest-news-section {
    margin-bottom: 60px;
  }

  .news-image {
    height: 200px;
  }

  .news-content {
    padding: 20px;
  }

  .news-content h3 {
    font-size: 1.1rem;
  }

  .newsletter-box {
    padding: 40px 25px;
  }

  .newsletter-box h2 {
    font-size: 1.4rem;
    letter-spacing: 1px;
  }

  .newsletter-description {
    font-size: 0.95rem;
  }

  .subscription-input-group {
    flex-direction: column;
    gap: 0;
  }

  .subscription-input-group input {
    border-right: 1px solid #e5e5e5;
    border-bottom: none;
  }

  .subscription-btn {
    width: 100%;
    padding: 16px 28px;
  }

  .featured-image {
    height: 250px;
  }
  
  .hero-banner h1 {
    font-size: 2rem;
    margin-bottom: 0;
    margin-top: 0;
  }
  
  .hero-banner > .container > p {
    display: none;
  }
  
  .dynasty-portraits {
    gap: 12px;
    margin-top: 5px;
    max-width: 350px;
  }
  
  .portrait-image {
    margin-bottom: 10px;
  }
  
  .portrait-name {
    font-size: 0.85rem;
  }
}
