.announcement {
  padding: 3rem 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #fff 100%);
}
.announcement-container {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  gap: 2rem;
  padding: 1rem;
  background: white;
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
  overflow: hidden;
}
@media (max-width: 768px) {
  .announcement-container {
    flex-direction: column;
  }
}
.announcement-image {
  flex: 1;
  min-width: 250px;
  max-width: 500px;
  max-height: 350px;
  overflow: hidden;
}
.announcement-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.announcement-image:hover img {
  transform: scale(1.03);
}
@media (max-width: 768px) {
  .announcement-image {
    min-width: auto;
    height: 250px;
  }
}
.announcement-content {
  flex: 1;
  padding: 2rem;
  position: relative;
}
.announcement-badge {
  background: #e63946;
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 5px;
  font-size: 1.2rem;
  font-weight: bold;
  display: inline-block;
  margin-bottom: 1rem;
  text-transform: uppercase;
}
.announcement-title {
  font-size: 2.8rem;
  color: #2A5C84;
  margin-bottom: 1rem;
  line-height: 1.3;
}
@media (max-width: 768px) {
  .announcement-title {
    font-size: 1.8rem;
  }
}
.announcement-meta {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
  color: #666666;
  font-size: 0.95rem;
}
.announcement-text {
  font-size: 1.4rem;
  line-height: 1.7;
  color: #333;
  margin-bottom: 2rem;
}
.announcement-text p {
  font-size: 1.4rem;
  line-height: 1.7;
  color: #333;
  margin-bottom: 2rem;
}
.announcement-orange-btn {
  margin-top: 32px;
}
.announcement-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.cta-button, .secondary-button {
  background: #2A5C84;
  color: white;
  padding: 1rem 2rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.cta-button:hover, .secondary-button:hover {
  background: #1e415d;
  transform: translateY(-2px);
}

.secondary-button {
  background: transparent;
  color: #2A5C84;
  border: 2px solid #2A5C84;
}
.secondary-button:hover {
  background: #2A5C84;
  color: white;
}

/*# sourceMappingURL=style.css.map */
