.elementor-1047 .elementor-element.elementor-element-f82d1b7 > .elementor-container{min-height:400px;}.elementor-1047 .elementor-element.elementor-element-93ac982 > .elementor-container{min-height:400px;}.elementor-1047 .elementor-element.elementor-element-2569903 > .elementor-container{min-height:400px;}.elementor-1047 .elementor-element.elementor-element-122ce9d > .elementor-container{min-height:400px;}/* Start custom CSS for html, class: .elementor-element-8b1883d */.blog-hero {
  position: relative;
  background: linear-gradient(to right, #dc2626, #b91c1c);
  color: white;
  padding: 80px 0;
  min-height: 400px;
  display: flex;
  align-items: center;
}

.hero-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
}

.hero-content {
  text-align: center;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: bold;
  margin-bottom: 24px;
  line-height: 1.1;
  animation: fadeInUp 1s ease-out;
}

.hero-description {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.9);
  max-width: 768px;
  margin: 0 auto;
  line-height: 1.6;
  animation: fadeInUp 1s ease-out 0.2s both;
}

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

/* Responsive Design */
@media (max-width: 768px) {
  .blog-hero {
    padding: 60px 0;
  }
  
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-description {
    font-size: 1.1rem;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2rem;
  }
  
  .hero-description {
    font-size: 1rem;
  }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-97756e1 */.news-grid-section {
  padding: 0 0 80px 0;
  background-color: #f9fafb;
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 32px;
  animation: fadeInGrid 1s ease-out;
}

.news-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  cursor: pointer;
}

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

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

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

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

.placeholder-image {
  height: 100%;
  background: linear-gradient(135deg, #f3f4f6 0%, #e5e7eb 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #6b7280;
}

.placeholder-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 8px;
}

.placeholder-image p {
  font-size: 0.875rem;
  margin: 0;
}

.card-content {
  padding: 24px;
}

.category-badge {
  display: inline-block;
  padding: 4px 8px;
  border-radius: 12px;
  font-size: 0.75rem;
  font-weight: 600;
  margin-bottom: 12px;
}

.category-badge.events {
  background-color: #fef2f2;
  color: #b91c1c;
}

.category-badge.education {
  background-color: #f0fdf4;
  color: #166534;
}

.category-badge.partnership {
  background-color: #faf5ff;
  color: #7c3aed;
}

.category-badge.museum {
  background-color: #fffbeb;
  color: #d97706;
}

.category-badge.heritage {
  background-color: #fff7ed;
  color: #ea580c;
}

.card-title {
  font-size: 1.125rem;
  font-weight: bold;
  color: #111827;
  margin-bottom: 12px;
  line-height: 1.4;
  transition: color 0.3s ease;
}

.news-card:hover .card-title {
  color: #dc2626;
}

.card-excerpt {
  color: #6b7280;
  font-size: 0.875rem;
  line-height: 1.5;
  margin-bottom: 16px;
}

.card-meta {
  display: flex;
  justify-content: space-between;
  margin-bottom: 16px;
}

.card-meta .meta-item {
  display: flex;
  align-items: center;
  gap: 4px;
  color: #6b7280;
  font-size: 0.75rem;
}

.card-meta .meta-icon {
  width: 12px;
  height: 12px;
}

.card-read-more {
  background: none;
  border: none;
  color: #dc2626;
  font-weight: 600;
  font-size: 0.875rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 0;
  transition: all 0.3s ease;
  width: 100%;
  justify-content: flex-start;
}

.card-read-more:hover {
  color: #b91c1c;
  background-color: #fef2f2;
  padding: 8px 12px;
  border-radius: 6px;
  margin: -8px -12px;
}

.card-read-more .btn-arrow {
  width: 16px;
  height: 16px;
  transition: transform 0.3s ease;
}

.card-read-more:hover .btn-arrow {
  transform: translateX(4px);
}

/* Animations */
@keyframes fadeInGrid {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .news-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  
  .news-grid-section {
    padding: 0 0 60px 0;
  }
}

@media (max-width: 480px) {
  .card-content {
    padding: 20px;
  }
  
  .card-title {
    font-size: 1rem;
  }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-3b11bae */.newsletter-section {
  padding: 80px 0;
  background-color: #f9fafb;
}

.newsletter-content {
  background-color: #111827;
  border-radius: 16px;
  padding: 48px;
  text-align: center;
  color: white;
  animation: slideInUp 0.8s ease-out;
}

.newsletter-title {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 16px;
  animation: fadeInUp 1s ease-out;
}

.newsletter-description {
  color: #d1d5db;
  margin-bottom: 32px;
  max-width: 512px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
  animation: fadeInUp 1s ease-out 0.2s both;
}

.newsletter-form {
  max-width: 448px;
  margin: 0 auto;
}

.form-wrapper {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 12px;
  animation: fadeInUp 1s ease-out 0.4s both;
}

.email-input {
  flex: 1;
  padding: 12px 16px;
  border-radius: 8px;
  background-color: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: white;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.email-input::placeholder {
  color: #9ca3af;
}

.email-input:focus {
  outline: none;
  border-color: #dc2626;
  background-color: rgba(255, 255, 255, 0.15);
  box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.1);
}

.subscribe-btn {
  background-color: #dc2626;
  color: white;
  border: none;
  padding: 12px 32px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.subscribe-btn:hover {
  background-color: #b91c1c;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(220, 38, 38, 0.3);
}

.subscribe-btn:active {
  transform: translateY(0);
}

.privacy-notice {
  font-size: 0.75rem;
  color: #9ca3af;
  margin: 0;
  animation: fadeInUp 1s ease-out 0.6s both;
}

/* Desktop Layout */
@media (min-width: 640px) {
  .form-wrapper {
    flex-direction: row;
    gap: 16px;
  }
  
  .email-input {
    flex: 1;
  }
  
  .subscribe-btn {
    flex-shrink: 0;
  }
}

/* Animations */
@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

/* Responsive Design */
@media (max-width: 768px) {
  .newsletter-section {
    padding: 60px 0;
  }
  
  .newsletter-content {
    padding: 32px 24px;
  }
  
  .newsletter-title {
    font-size: 1.75rem;
  }
  
  .newsletter-description {
    font-size: 0.95rem;
  }
}

@media (max-width: 480px) {
  .newsletter-content {
    padding: 24px 20px;
  }
  
  .newsletter-title {
    font-size: 1.5rem;
  }
  
  .email-input,
  .subscribe-btn {
    padding: 10px 16px;
    font-size: 0.95rem;
  }
}

/* Focus and Accessibility */
.email-input:focus,
.subscribe-btn:focus {
  outline: 2px solid #dc2626;
  outline-offset: 2px;
}

/* Loading State for Button */
.subscribe-btn.loading {
  opacity: 0.7;
  cursor: not-allowed;
  pointer-events: none;
}

.subscribe-btn.loading::after {
  content: '';
  width: 16px;
  height: 16px;
  margin-left: 8px;
  border: 2px solid transparent;
  border-top: 2px solid currentColor;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  display: inline-block;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}/* End custom CSS */