/* ================================================================
   БАЗОВЫЕ НАСТРОЙКИ И СБРОС
   ================================================================ */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  line-height: 1.65;
  color: #2c2c2c;
  background: #ffffff;
  font-size: 16px;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
  transition: all 0.2s ease;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* ================================================================
   HEADER / НАВИГАЦИЯ - HORIZONTAL SPLIT LAYOUT
   ================================================================ */
.site-header {
  background: #ffffff;
  padding: 1rem 2rem;
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid #e8e8e8;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.header-container {
  max-width: 1300px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

/* Логотип - left side with tagline inline */
.site-logo {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
}

.site-logo a {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  color: #1a1a1a;
  letter-spacing: -0.03em;
  line-height: 1;
}

.site-logo a:hover {
  color: #e63946;
}

.site-tagline {
  font-size: 0.8125rem;
  color: #888;
  font-weight: 400;
  letter-spacing: 0.01em;
  padding-left: 0.75rem;
  border-left: 2px solid #e8e8e8;
}

/* Навигационное меню - right side horizontal */
#top_menus {
  display: flex;
  list-style: none;
  gap: 0;
  align-items: center;
  margin: 0;
  padding: 0;
}

#top_menus li {
  margin: 0;
}

#top_menus .nav-link {
  display: inline-block;
  padding: 0.5rem 1rem;
  font-size: 0.9375rem;
  font-weight: 500;
  color: #4a4a4a;
  transition: all 0.2s ease;
  position: relative;
}

#top_menus .nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 1rem;
  right: 1rem;
  height: 2px;
  background: #e63946;
  transform: scaleX(0);
  transition: transform 0.2s ease;
}

#top_menus .nav-link:hover,
#top_menus .nav-link:focus {
  color: #e63946;
}

#top_menus .nav-link:hover::after {
  transform: scaleX(1);
}

#top_menus .current-menu-item .nav-link,
#top_menus .current_page_item .nav-link {
  color: #e63946;
  font-weight: 600;
}

#top_menus .current-menu-item .nav-link::after,
#top_menus .current_page_item .nav-link::after {
  transform: scaleX(1);
}

/* ================================================================
   СПИСОК ПОСТОВ (КАРТОЧКИ) - MAGAZINE STYLE GRID
   ================================================================ */
.post-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 1300px;
  margin: 3rem auto;
  padding: 0 2rem;
}

/* Первый пост - featured (занимает всю ширину) */
.post-item:first-child {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 2.5rem;
  align-items: center;
  background: #f9f9f9;
  padding: 2rem;
  border-radius: 0;
  border-left: 4px solid #e63946;
}

.post-item:first-child .post-featured-image {
  height: 420px;
  order: 1;
}

.post-item:first-child .post-content-wrapper {
  order: 2;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.post-item:first-child h3 {
  font-size: 2rem;
  margin: 0;
}

.post-item:first-child > p {
  font-size: 1.125rem;
  margin: 0;
}

.post-item:first-child > a:last-of-type {
  margin: 0;
  align-self: flex-start;
}

/* Остальные карточки постов */
.post-item {
  background: #ffffff;
  border: 1px solid #e8e8e8;
  border-radius: 0;
  overflow: hidden;
  transition: all 0.25s ease;
  display: flex;
  flex-direction: column;
}

.post-item:hover {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  border-color: #d0d0d0;
  transform: translateY(-2px);
}

/* Изображение поста */
.post-featured-image {
  width: 100%;
  height: 200px;
  overflow: hidden;
  background: #f0f0f0;
  position: relative;
}

.post-featured-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.3) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.post-item:hover .post-featured-image::after {
  opacity: 1;
}

.post-featured-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.post-item:hover .post-featured-image img {
  transform: scale(1.06);
}

/* Контейнер для контента (для первого поста) */
.post-content-wrapper {
  display: contents;
}

/* Заголовок поста */
.post-item h3 {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.4;
  margin: 1.25rem 1.25rem 0.75rem;
  color: #1a1a1a;
}

.post-item h3 a {
  color: #1a1a1a;
  transition: color 0.2s ease;
}

.post-item h3 a:hover {
  color: #e63946;
}

/* Краткое описание */
.post-item > p {
  margin: 0 1.25rem 1.25rem;
  color: #666;
  font-size: 0.9375rem;
  line-height: 1.6;
  flex: 1;
}

/* Кнопка "Read More" */
.post-item > a:last-of-type {
  display: inline-flex;
  align-items: center;
  margin: 0 1.25rem 1.25rem;
  padding: 0.625rem 1.5rem;
  background: #1a1a1a;
  color: #fff;
  font-weight: 600;
  font-size: 0.8125rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: all 0.25s ease;
  align-self: flex-start;
}

.post-item > a:last-of-type:hover {
  background: #e63946;
  transform: translateX(3px);
}

.post-item > a:last-of-type::after {
  content: '→';
  margin-left: 0.5rem;
  transition: transform 0.25s ease;
}

.post-item > a:last-of-type:hover::after {
  transform: translateX(3px);
}

/* ================================================================
   ПАГИНАЦИЯ
   ================================================================ */
nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  margin: 3rem auto 4rem;
  padding: 0 2rem;
}

.page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  height: 42px;
  padding: 0 0.875rem;
  border: 1px solid #e8e8e8;
  background: #fff;
  font-weight: 600;
  font-size: 0.9375rem;
  color: #4a4a4a;
  transition: all 0.2s ease;
}

.page-numbers:hover {
  background: #1a1a1a;
  color: #fff;
  border-color: #1a1a1a;
}

.page-numbers.current {
  background: #e63946;
  color: #fff;
  border-color: #e63946;
}

.next.page-numbers,
.prev.page-numbers {
  border: none;
  background: transparent;
  color: #4a4a4a;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.8125rem;
  letter-spacing: 0.05em;
}

.next.page-numbers:hover,
.prev.page-numbers:hover {
  color: #e63946;
  background: transparent;
}

/* ================================================================
   ХЛЕБНЫЕ КРОШКИ
   ================================================================ */
.breadcrumbs {
  max-width: 1300px;
  margin: 2rem auto 0;
  padding: 0 2rem;
  font-size: 0.875rem;
  color: #888;
}

.breadcrumbs a {
  color: #4a4a4a;
  font-weight: 500;
  transition: color 0.2s ease;
}

.breadcrumbs a:hover {
  color: #e63946;
}

.breadcrumbs span {
  color: #aaa;
}

/* ================================================================
   СТРАНИЦА / ПОСТ (ПОЛНЫЙ КОНТЕНТ)
   ================================================================ */
.page-content {
  max-width: 800px;
  margin: 3rem auto;
  padding: 3rem 4rem;
  background: #fff;
  border: 1px solid #e8e8e8;
}

.page-content .post-featured-image {
  height: auto;
  max-height: 500px;
  margin: -3rem -4rem 2.5rem;
  overflow: hidden;
}

.page-content h1 {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1.2;
  color: #1a1a1a;
  margin-bottom: 2rem;
  text-align: left;
  letter-spacing: -0.02em;
}

.page-content .content {
  font-size: 1.0625rem;
  line-height: 1.75;
  color: #2c2c2c;
}

.page-content .content p {
  margin-bottom: 1.5rem;
}

.page-content .content h2 {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 2rem;
  font-weight: 700;
  margin: 2.5rem 0 1.25rem;
  color: #1a1a1a;
  letter-spacing: -0.01em;
}

.page-content .content h3 {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 1.5rem;
  font-weight: 600;
  margin: 2rem 0 1rem;
  color: #2c2c2c;
}

.page-content .content ul,
.page-content .content ol {
  margin: 1.5rem 0 1.5rem 2rem;
}

.page-content .content li {
  margin-bottom: 0.75rem;
}

.page-content .content a {
  color: #e63946;
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color 0.2s ease;
  font-weight: 500;
}

.page-content .content a:hover {
  color: #1a1a1a;
}

.page-content .content img {
  margin: 2.5rem auto;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.page-content .content blockquote {
  margin: 2rem 0;
  padding: 1.25rem 1.75rem;
  border-left: 4px solid #e63946;
  background: #f9f9f9;
  font-style: italic;
  color: #4a4a4a;
}

/* ================================================================
   FOOTER / ПОДВАЛ - SIMPLE CENTERED LAYOUT
   ================================================================ */
footer {
  background: #1a1a1a;
  color: #aaa;
  padding: 3rem 2rem 2rem;
  margin-top: 5rem;
  border-top: 3px solid #e63946;
}

.footer-container {
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 4rem;
  margin-bottom: 2.5rem;
}

/* Колонка с информацией о сайте */
.footer-about h3 {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 1.25rem;
  color: #ffffff;
  margin-bottom: 1rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.footer-about p {
  font-size: 0.9375rem;
  line-height: 1.6;
  color: #999;
  margin-bottom: 1.5rem;
}

/* Колонки меню */
.footer-section h4 {
  font-size: 0.8125rem;
  color: #fff;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
}

.footer-menu {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-menu a {
  font-size: 0.9375rem;
  color: #999;
  transition: color 0.2s ease;
  display: inline-block;
}

.footer-menu a:hover {
  color: #e63946;
  transform: translateX(3px);
}

/* Copyright */
.footer-bottom {
  border-top: 1px solid #333;
  padding-top: 2rem;
  text-align: center;
}

.footer-bottom p {
  font-size: 0.875rem;
  color: #777;
}

.footer-bottom a {
  color: #e63946;
  font-weight: 500;
  transition: color 0.2s ease;
}

.footer-bottom a:hover {
  color: #fff;
}

/* ================================================================
   АДАПТИВНОСТЬ (МОБИЛЬНЫЕ УСТРОЙСТВА)
   ================================================================ */
@media (max-width: 1200px) {
  .post-list {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 1024px) {
  .post-item:first-child {
    grid-template-columns: 1fr;
  }

  .post-item:first-child .post-featured-image {
    order: 1;
    height: 320px;
  }

  .post-item:first-child .post-content-wrapper {
    order: 2;
  }

  .page-content {
    padding: 2.5rem 3rem;
  }

  .page-content .post-featured-image {
    margin: -2.5rem -3rem 2rem;
  }

  .footer-container {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
}

@media (max-width: 768px) {
  .site-header {
    padding: 1rem 1.5rem;
  }

  .header-container {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .site-logo {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.375rem;
  }

  .site-tagline {
    border-left: none;
    padding-left: 0;
  }

  #top_menus {
    flex-wrap: wrap;
    gap: 0.25rem;
  }

  #top_menus .nav-link {
    padding: 0.375rem 0.75rem;
    font-size: 0.875rem;
  }

  .post-list {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 0 1.5rem;
  }

  .post-item:first-child {
    padding: 1.5rem;
  }

  .post-item:first-child .post-featured-image {
    height: 240px;
  }

  .post-item:first-child h3 {
    font-size: 1.5rem;
  }

  .post-item:first-child > p {
    font-size: 1rem;
  }

  .page-content {
    padding: 2rem;
    margin: 2rem 1rem;
  }

  .page-content .post-featured-image {
    margin: -2rem -2rem 1.5rem;
  }

  .page-content h1 {
    font-size: 2rem;
  }

  .footer-container {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

@media (max-width: 480px) {
  body {
    font-size: 15px;
  }

  .site-logo a {
    font-size: 1.25rem;
  }

  .site-tagline {
    font-size: 0.75rem;
  }

  #top_menus .nav-link {
    font-size: 0.8125rem;
  }

  .page-content {
    padding: 1.5rem;
  }

  .page-content .post-featured-image {
    margin: -1.5rem -1.5rem 1.25rem;
  }

  .page-content h1 {
    font-size: 1.75rem;
  }

  .page-content .content {
    font-size: 1rem;
  }

  .post-item h3 {
    font-size: 1.0625rem;
    margin: 1rem 1rem 0.625rem;
  }

  .post-item > p {
    margin: 0 1rem 1rem;
  }

  .post-item > a:last-of-type {
    margin: 0 1rem 1rem;
  }

  footer {
    padding: 2.5rem 1.5rem 1.5rem;
  }
}

/* ================================================================
   СТРАНИЦА 404
   ================================================================ */
.error-404 {
  max-width: 600px;
  margin: 5rem auto;
  padding: 3rem 2rem;
  text-align: center;
  background: #fff;
  border: 1px solid #e8e8e8;
}

.error-404 h1 {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 7rem;
  font-weight: 900;
  color: #e63946;
  margin-bottom: 1rem;
  line-height: 1;
  letter-spacing: -0.03em;
}

.error-404 h2 {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 1rem;
}

.error-404 p {
  font-size: 1rem;
  color: #666;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.error-404 a {
  display: inline-block;
  padding: 0.875rem 2rem;
  background: #1a1a1a;
  color: #fff;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.8125rem;
  letter-spacing: 0.05em;
  transition: all 0.25s ease;
}

.error-404 a:hover {
  background: #e63946;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(230, 57, 70, 0.3);
}

/* ================================================================
   HERO SECTION - MODERN WELCOME BLOCK WITH BACKGROUND IMAGE
   ================================================================ */
.hero-section {
  position: relative;
  background-attachment: fixed;
  background-repeat: no-repeat;
  padding: 8rem 2rem;
  margin: 0 0 3rem 0;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 1;
}

.hero-container {
  max-width: 1300px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  width: 100%;
}

.hero-content {
  text-align: center;
  color: #ffffff;
}

.hero-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: #ffffff;
  margin-bottom: 1rem;
  padding: 0.5rem 1rem;
  background: rgba(230, 57, 70, 0.9);
  border-radius: 20px;
}

.hero-section h1 {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 3rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 1.5rem;
  line-height: 1.2;
  letter-spacing: -0.02em;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-section > div > p {
  font-size: 1.125rem;
  color: #f0f0f0;
  margin-bottom: 2.5rem;
  line-height: 1.7;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

.hero-buttons {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ================================================================
   BUTTONS - UNIVERSAL STYLES
   ================================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2.5rem;
  font-weight: 600;
  font-size: 0.9375rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: 4px;
  transition: all 0.3s ease;
  cursor: pointer;
  text-decoration: none;
  border: none;
}

.btn-primary {
  background: #1a1a1a;
  color: #fff;
}

.btn-primary:hover {
  background: #e63946;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(230, 57, 70, 0.2);
}

.btn-secondary {
  background: transparent;
  color: #ffffff;
  border: 2px solid #ffffff;
}

.btn-secondary:hover {
  background: #ffffff;
  color: #1a1a1a;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255, 255, 255, 0.3);
}

.btn-cta {
  background: #e63946;
  color: #fff;
  padding: 1.125rem 3rem;
  font-size: 1rem;
}

.btn-cta:hover {
  background: #1a1a1a;
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
}

/* ================================================================
   HIGHLIGHTS SECTION - FEATURE BLOCKS
   ================================================================ */
.highlights-section {
  background: #ffffff;
  padding: 4rem 2rem;
  margin-bottom: 3rem;
}

.highlights-container {
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}

.highlight-block {
  padding: 2.5rem;
  background: #f9f9f9;
  border: 1px solid #e8e8e8;
  border-radius: 8px;
  text-align: center;
  transition: all 0.3s ease;
}

.highlight-block:hover {
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
  border-color: #d0d0d0;
  transform: translateY(-4px);
}

.highlight-icon {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  display: block;
}

.highlight-block h3 {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 1.375rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 1rem;
  letter-spacing: -0.01em;
}

.highlight-block p {
  font-size: 0.9375rem;
  color: #666;
  line-height: 1.7;
  margin: 0;
}

/* ================================================================
   POSTS SECTION - WRAPPER
   ================================================================ */
.posts-section-wrapper {
  background: #ffffff;
  padding: 0;
}

.posts-section-header {
  max-width: 1300px;
  margin: 3rem auto 2rem;
  padding: 0 2rem;
  border-left: 4px solid #e63946;
  padding-left: 1.5rem;
}

.posts-section-header h2 {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 2.5rem;
  font-weight: 800;
  color: #1a1a1a;
  margin-bottom: 0.75rem;
  letter-spacing: -0.02em;
}

.posts-section-header p {
  font-size: 1rem;
  color: #666;
  margin: 0;
}

/* Update post-list grid for clean article layout */
.post-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 1300px;
  margin: 2.5rem auto;
  padding: 0 2rem;
}

/* Remove featured layout for cleaner design */
.post-item:first-child {
  grid-column: auto;
  display: flex;
  flex-direction: column;
  gap: 0;
  align-items: stretch;
  background: #ffffff;
  padding: 0;
  border-radius: 0;
  border-left: none;
}

.post-item:first-child .post-featured-image {
  height: 200px;
  order: 0;
}

.post-item:first-child .post-content-wrapper {
  order: 0;
  display: contents;
}

.post-item:first-child h3 {
  font-size: 1.125rem;
  margin: 1.25rem 0 0.75rem 0;
}

.post-item:first-child > p {
  font-size: 0.9375rem;
  margin: 0 0 1.25rem 0;
}

.post-item:first-child > a:last-of-type {
  margin: 0 0 1.25rem 0;
  align-self: flex-start;
}

/* ================================================================
   CTA SECTION - CALL TO ACTION
   ================================================================ */
.cta-section {
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
  color: #fff;
  padding: 4rem 2rem;
  margin-top: 3rem;
  text-align: center;
}

.cta-container {
  max-width: 800px;
  margin: 0 auto;
}

.cta-section h2 {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

.cta-section > div > p {
  font-size: 1.125rem;
  color: #ccc;
  margin-bottom: 2.5rem;
  line-height: 1.7;
}

/* ================================================================
   PAGINATION WRAPPER - CLEAN STYLING
   ================================================================ */
.pagination-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  margin: 3rem auto 4rem;
  padding: 0 2rem;
  max-width: 1300px;
}

/* ================================================================
   READ MORE BUTTON - CLEAN STYLING
   ================================================================ */
.btn-read-more {
  display: inline-flex;
  align-items: center;
  padding: 0.625rem 1.5rem;
  background: #1a1a1a;
  color: #fff;
  font-weight: 600;
  font-size: 0.8125rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: all 0.25s ease;
  border-radius: 0;
}

.btn-read-more:hover {
  background: #e63946;
  transform: translateX(3px);
}

.btn-read-more::after {
  content: '→';
  margin-left: 0.5rem;
  transition: transform 0.25s ease;
}

.btn-read-more:hover::after {
  transform: translateX(3px);
}

/* ================================================================
   RESPONSIVE - TABLETS (3 COLUMNS)
   ================================================================ */
@media (max-width: 1200px) {
  .post-list {
    grid-template-columns: repeat(3, 1fr);
  }

  .highlights-container {
    grid-template-columns: repeat(3, 1fr);
  }

  .hero-section h1 {
    font-size: 2.5rem;
  }

  .hero-section > div > p {
    font-size: 1rem;
  }

  .cta-section h2 {
    font-size: 2rem;
  }
}

/* ================================================================
   RESPONSIVE - TABLETS LANDSCAPE (3 COLUMNS)
   ================================================================ */
@media (max-width: 1024px) {
  .post-list {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }

  .highlights-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .highlight-block {
    padding: 2rem;
  }

  .hero-section {
    padding: 6rem 2rem;
    min-height: 500px;
    background-attachment: scroll;
  }

  .hero-section h1 {
    font-size: 2.25rem;
  }

  .hero-buttons {
    gap: 1rem;
  }

  .btn {
    padding: 0.875rem 2rem;
  }
}

/* ================================================================
   RESPONSIVE - MOBILE PHONES (1 COLUMN)
   ================================================================ */
@media (max-width: 768px) {
  .post-list {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 0 1.5rem;
  }

  .highlights-container {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .highlight-block {
    padding: 1.75rem;
  }

  .hero-section {
    padding: 4rem 1.5rem;
    min-height: 420px;
    background-attachment: scroll;
  }

  .hero-label {
    font-size: 0.7rem;
    padding: 0.4rem 0.8rem;
  }

  .hero-section h1 {
    font-size: 2rem;
    margin-bottom: 1rem;
  }

  .hero-section > div > p {
    font-size: 1rem;
    margin-bottom: 1.5rem;
  }

  .hero-buttons {
    flex-direction: column;
    gap: 1rem;
  }

  .btn {
    width: 100%;
    padding: 1rem;
  }

  .cta-section {
    padding: 3rem 1.5rem;
  }

  .cta-section h2 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
  }

  .cta-section > div > p {
    font-size: 1rem;
    margin-bottom: 2rem;
  }

  .posts-section-header {
    margin: 2rem 1.5rem 1.5rem;
    padding: 0 1rem;
    padding-left: 1rem;
  }

  .posts-section-header h2 {
    font-size: 2rem;
  }

  .posts-section-header p {
    font-size: 0.9375rem;
  }
}

@media (max-width: 480px) {
  .post-list {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding: 0 1rem;
  }

  .highlights-container {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .highlight-block {
    padding: 1.5rem;
  }

  .highlight-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
  }

  .highlight-block h3 {
    font-size: 1.125rem;
  }

  .highlight-block p {
    font-size: 0.875rem;
  }

  .hero-section {
    padding: 3rem 1rem;
    min-height: 360px;
    background-attachment: scroll;
  }

  .hero-label {
    font-size: 0.65rem;
    padding: 0.35rem 0.7rem;
  }

  .hero-section h1 {
    font-size: 1.75rem;
    margin-bottom: 0.75rem;
  }

  .hero-section > div > p {
    font-size: 0.9375rem;
    margin-bottom: 1.25rem;
  }

  .btn {
    padding: 0.875rem 1.5rem;
    font-size: 0.75rem;
  }

  .cta-section {
    padding: 2.5rem 1rem;
  }

  .cta-section h2 {
    font-size: 1.5rem;
  }

  .cta-section > div > p {
    font-size: 0.9375rem;
  }

  .posts-section-header {
    margin: 1.5rem 1rem;
    padding: 0 0.75rem;
    padding-left: 0.75rem;
  }

  .posts-section-header h2 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
  }

  .post-item h3 {
    font-size: 1rem;
  }
}