.container {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 120px;
  box-sizing: border-box;
}

a {
  text-decoration: none;
  color: inherit;
}

h1, h2, h3, h4, h5, h6, p {
  margin: 0;
}

@media (max-width: 1200px) {
  .container {
    padding: 0 60px;
  }
}

@media (max-width: 768px) {
  .container {
    padding: 0 24px;
  }
}

/* CSS for section section:header */
.header-section {
  background-color: rgba(255, 253, 250, 0.8);
  backdrop-filter: blur(4px);
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid #eee;
}
.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 60px;
  padding-top: 12px;
  padding-bottom: 12px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 8px;
}
.logo img:first-child {
  height: 36px;
}
.logo img:last-child {
  height: 21px;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 20px;
}
.nav-button {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.nav-button img {
  width: 32px;
  height: 32px;
}

/* CSS for section section:hero */
.hero-section {
    padding-top: 100px;
  padding-bottom: 60px;
}
.hero-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
}
.hero-content {
  flex: 1;
}
.hero-text-wrapper {
  position: relative;
  max-width: 773px;
}
.hero-bg-svg {
  position: absolute;
  top: 50%;
  left: -10%;
  transform: translateY(-50%);
  z-index: -1;
  width: 280px;
  height: 368px;
  opacity: 0.5;
}
.hero-title {
  font-family: 'Neue Haas Grotesk Display Pro', 'Inter', sans-serif;
  font-weight: 700;
  font-size: 72px;
  line-height: 84px;
  color: var(--color-text-dark);
}
.hero-image-container {
  flex-shrink: 0;
  width: 507px;
  height: 428px;
  position: relative;
}
.hero-image {
  width: 100%;
  height: 100%;
  background-image: url('../../assets/images/8b82fb761cd878642b3b18683d4645262f144a44.png');
  background-size: cover;
  background-position: center;
}
.search-form {
  position: absolute;
  bottom: 20px;
  left: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  background-color: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(2px);
  padding: 12px 16px;
  width: 367px;
  box-sizing: border-box;
}
.search-icon {
  width: 24px;
  height: 24px;
}
.search-input {
  border: none;
  background: transparent;
  outline: none;
  font-family: 'Neue Haas Grotesk Display Pro', 'Inter', sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  color: var(--color-text-muted);
  width: 100%;
}
@media (max-width: 1200px) {
  .hero-title {
    font-size: 56px;
    line-height: 64px;
  }
  .hero-image-container {
    width: 400px;
    height: 338px;
  }
}
@media (max-width: 992px) {
  .hero-container {
    flex-direction: column;
    text-align: center;
  }
  .hero-bg-svg {
    display: none;
  }
  .hero-image-container {
    width: 100%;
    max-width: 507px;
  }
}
@media (max-width: 768px) {
  .hero-title {
    font-size: 40px;
    line-height: 48px;
  }
}

/* CSS for section section:latest-articles */
.articles-section {
  padding-top: 80px;
  padding-bottom: 80px;
}
.section-title-bar {
  background-color: #ebeffc;
  padding: 24px;
  margin-bottom: 24px;
}
.section-title {
  font-family: 'Neue Haas Grotesk Display Pro', 'Inter', sans-serif;
  font-weight: 600;
  font-size: 24px;
  line-height: 32px;
  color: var(--color-text-dark);
}
.latest-articles-grid {
  display: flex;
  gap: 20px;
}
.article-card-large {
  flex: 0 0 387px;
  background: linear-gradient(90deg, #ee7611 0%, #f6ae45 100%);
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  color: var(--color-text-light);
  position: relative;
  overflow: hidden;
}
.article-card-large-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}
.article-card-large .decorative-svg {
  position: absolute;
  top: -40px;
  left: -100px;
  width: 594px;
  height: 432px;
  opacity: 0.2;
}
.article-card-large .article-image {
  height: 234px;
  background-size: cover;
  background-position: center;
  position: relative;
  z-index: 1;
}
.article-card-large .article-card-content {
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
  z-index: 1;
}
.article-date {
  font-family: 'Neue Haas Grotesk Display Pro', 'Inter', sans-serif;
  font-weight: 500;
  font-size: 12px;
  line-height: 16px;
  color: #f0f0f0;
}
.article-title-large {
  font-family: 'Neue Haas Grotesk Display Pro', 'Inter', sans-serif;
  font-weight: 600;
  font-size: 24px;
  line-height: 1.2;
}
.article-excerpt {
  font-family: 'Neue Haas Grotesk Display Pro', 'Inter', sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 20px;
  color: #f0f0f0;
}
.read-more-link {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Neue Haas Grotesk Display Pro', 'Inter', sans-serif;
  font-weight: 700;
  font-size: 14px;
  line-height: 18px;
  margin-top: auto;
}
.read-more-link.orange { color: #1b1d6b; }
.read-more-link.blue { color: var(--color-accent); }
.read-more-link img { width: 20px; height: 20px; }

.small-articles-column {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 20px;
}
.article-card-small {
  position: relative;
  overflow: hidden;
  background-color: var(--color-surface);
  height: 236px;
}
.article-card-small .article-image {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transition: transform 0.3s ease;
}
.article-card-small:hover .article-image {
  transform: scale(1.05);
}
.article-card-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(250, 250, 250, 0.75);
  backdrop-filter: blur(2px);
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.article-date-small {
  font-family: 'Neue Haas Grotesk Display Pro', 'Inter', sans-serif;
  font-weight: 500;
  font-size: 12px;
  line-height: 16px;
  color: #404040;
}
.article-title-small {
  font-family: 'Neue Haas Grotesk Display Pro', 'Inter', sans-serif;
  font-weight: 600;
  font-size: 20px;
  line-height: 24px;
  color: var(--color-text-dark);
}

@media (max-width: 1200px) {
  .latest-articles-grid {
    flex-direction: column;
  }
  .article-card-large {
    flex: 1;
  }
}
@media (max-width: 768px) {
  .small-articles-column {
    grid-template-columns: 1fr;
  }
}

/* CSS for section section:most-read */
.most-read-grid {
  display: flex;
  gap: 19px;
}
.article-card-large.blue-gradient {
  flex: 0 0 590px;
  background: linear-gradient(90deg, #27278b 0%, #6873e9 100%);
}
.blue-gradient .decorative-svg {
  width: 627px;
  height: 456px;
  opacity: 0.1;
}
.most-read-column {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 19px;
}
.most-read-row {
  display: flex;
  gap: 20px;
  flex: 1;
}
.article-card-small.wide {
  height: 236px;
}
.article-card-small.square {
  flex: 1;
  height: 326px;
}
@media (max-width: 1200px) {
  .most-read-grid {
    flex-direction: column;
  }
  .article-card-large.blue-gradient {
    flex: 1;
  }
}
@media (max-width: 768px) {
  .most-read-row {
    flex-direction: column;
  }
}

/* CSS for section section:all-articles */
.all-articles-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 32px;
}
.article-card-standard {
  background-color: var(--color-surface);
  display: flex;
  flex-direction: column;
}
.article-image-standard {
  height: 148px;
  background-size: cover;
  background-position: center;
}
.article-content-standard {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex-grow: 1;
}
.article-content-standard .read-more-link {
  margin-top: auto;
}
.article-excerpt-small {
  font-family: 'Neue Haas Grotesk Display Pro', 'Inter', sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 20px;
  color: #404040;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  padding: 4px 24px;
}
.pagination-link {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Neue Haas Grotesk Display Pro', 'Inter', sans-serif;
  font-weight: 600;
  font-size: 14px;
  line-height: 20px;
}
.pagination-link.prev { color: #949494; }
.pagination-link.next { color: #1a1a1a; }
.pagination-link img { width: 14px; height: 14px; }
.pagination-numbers {
  display: flex;
  align-items: center;
}
.pagination-number {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 28px;
  height: 28px;
  font-family: 'Neue Haas Grotesk Display Pro', 'Inter', sans-serif;
  font-weight: 500;
  font-size: 16px;
  color: #595959;
}
.pagination-number.active {
  color: var(--color-accent);
  font-weight: 600;
}
.pagination-ellipsis {
  color: #595959;
  padding: 0 4px;
}
@media (max-width: 1200px) {
  .all-articles-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .all-articles-grid {
    grid-template-columns: 1fr;
  }
  .pagination {
    flex-wrap: wrap;
    justify-content: center;
  }
}

/* CSS for section section:footer */
.footer-section {
  background: linear-gradient(180deg, #3636cb 0%, #13144d 100%);
  color: var(--color-text-light);
  padding-top: 72px;
  padding-bottom: 32px;
}
.footer-main {
  display: flex;
  justify-content: space-between;
  gap: 48px;
  margin-bottom: 40px;
}
.footer-about {
  display: flex;
  flex-direction: column;
  gap: 20px;
  flex-shrink: 0;
  width: 186px;
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 5px;
}
.footer-logo img:first-child { height: 46px; }
.footer-logo img:last-child { height: 27px; }
.footer-tagline {
  font-family: 'Neue Haas Grotesk Display Pro', 'Inter', sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  color: #fafafa;
}
.footer-links-container {
  display: flex;
  gap: 72px;
  flex-grow: 1;
  justify-content: space-between;
}
.footer-links-column {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.footer-links-title {
  font-family: 'Neue Haas Grotesk Display Pro', 'Inter', sans-serif;
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
  color: #fafafa;
}
.footer-links-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-links-list a, .footer-links-list span {
  font-family: 'Neue Haas Grotesk Display Pro', 'Inter', sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  color: #f0f0f0;
  transition: color 0.3s;
}
.footer-links-list a:hover {
  color: #fff;
}
.contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
}
.contact-list img {
  width: 16px;
  height: 16px;
  margin-top: 4px;
}
.footer-bottom {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.footer-divider {
  border: none;
  height: 1px;
  background-color: #6873e9;
  margin: 0;
}
.copyright-text {
  font-family: 'Neue Haas Grotesk Display Pro', 'Inter', sans-serif;
  font-weight: 500;
  font-size: 14px;
  line-height: 20px;
  color: #f0f0f0;
  text-align: center;
}
@media (max-width: 992px) {
  .footer-main {
    flex-direction: column;
  }
  .footer-links-container {
    flex-direction: column;
    gap: 32px;
  }
}
@media (max-width: 768px) {
  .footer-links-container {
    flex-direction: column;
    gap: 32px;
  }
}