* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", sans-serif;
  background-color: #F6F5F2;
  color: #1A1A1A;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 16px;
}

h1 {
  font-size: 2.5rem;
}
@media (max-width: 768px) {
  h1 {
    font-size: 2rem;
  }
}

h2 {
  font-size: 2rem;
}
@media (max-width: 768px) {
  h2 {
    font-size: 1.6rem;
  }
}

h3 {
  font-size: 1.5rem;
}

a {
  color: inherit;
  text-decoration: none;
  transition: all 0.2s ease;
}
a:hover {
  color: #D36B46;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

button, .btn {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
  transition: all 0.2s ease;
}

.brand {
  font-weight: 600;
  font-size: 1.8rem;
  letter-spacing: -0.02em;
  color: #2B2B2B;
}
.brand span {
  color: #D36B46;
}

.badge {
  display: inline-block;
  padding: 4px 10px;
  font-size: 0.75rem;
  font-weight: 500;
  border-radius: 20px;
  background: #6C757D;
  color: #FFFFFF;
}
.badge.badge-success {
  background: #2E7D32;
}
.badge.badge-warning {
  background: #ED6C02;
}
.badge.badge-info {
  background: #0288D1;
}
.badge.badge-accent {
  background: #D36B46;
}

.section {
  padding: 64px 0;
}
@media (max-width: 768px) {
  .section {
    padding: 40px 0;
  }
}

.section-title {
  margin-bottom: 40px;
  position: relative;
}
.section-title::after {
  content: "";
  position: absolute;
  bottom: -12px;
  left: 0;
  width: 60px;
  height: 3px;
  background: #D36B46;
  border-radius: 2px;
}

.text-muted {
  color: #6C757D;
}

.bg-white {
  background: #FFFFFF;
  border-radius: 12px;
  padding: 24px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
}

.page-header {
  padding: 32px 0;
  border-bottom: 1px solid #E5E5E0;
  margin-bottom: 32px;
}
.page-header h1 {
  margin-bottom: 8px;
}
.page-header .breadcrumb {
  display: flex;
  gap: 8px;
  color: #6C757D;
  font-size: 0.9rem;
}
.page-header .breadcrumb a:hover {
  color: #D36B46;
}
.page-header .breadcrumb .separator {
  color: #E5E5E0;
}

.header {
  background: #F6F5F2;
  border-bottom: 1px solid #E5E5E0;
  position: sticky;
  top: 0;
  z-index: 100;
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.header__logo .brand {
  font-size: 1.8rem;
}
.header__nav {
  display: flex;
  gap: 32px;
}
@media (max-width: 992px) {
  .header__nav {
    display: none;
  }
}
.header__nav a {
  font-weight: 500;
  color: #1A1A1A;
  padding: 8px 0;
  border-bottom: 2px solid transparent;
}
.header__nav a:hover, .header__nav a.active {
  color: #D36B46;
  border-bottom-color: #D36B46;
}
.header__actions {
  display: flex;
  align-items: center;
  gap: 16px;
}
.header__actions .btn-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: transparent;
  font-size: 1.2rem;
}
.header__actions .btn-icon:hover {
  background: rgba(211, 107, 70, 0.1);
  color: #D36B46;
}
.header__actions .burger {
  display: none;
}
@media (max-width: 992px) {
  .header__actions .burger {
    display: flex;
  }
}

.btn {
  display: inline-block;
  padding: 12px 28px;
  font-weight: 500;
  border-radius: 8px;
  text-align: center;
  transition: all 0.2s ease;
}
.btn-primary {
  background: #2B2B2B;
  color: #FFFFFF;
}
.btn-primary:hover {
  background: rgb(68.5, 68.5, 68.5);
  color: #FFFFFF;
}
.btn-accent {
  background: #D36B46;
  color: #FFFFFF;
}
.btn-accent:hover {
  background: rgb(206.1004366812, 90.519650655, 49.3995633188);
  color: #FFFFFF;
}
.btn-outline {
  border: 1.5px solid #E5E5E0;
  background: transparent;
  color: #1A1A1A;
}
.btn-outline:hover {
  border-color: #D36B46;
  color: #D36B46;
}
.btn-outline-accent {
  border: 1.5px solid #D36B46;
  background: transparent;
  color: #D36B46;
}
.btn-outline-accent:hover {
  background: #D36B46;
  color: #FFFFFF;
}
.btn-sm {
  padding: 8px 16px;
  font-size: 0.9rem;
}
.btn-lg {
  padding: 16px 32px;
  font-size: 1.1rem;
}

.fixed-wa {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 60px;
  height: 60px;
  background: #25D366;
  color: #FFFFFF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
  z-index: 99;
  transition: all 0.2s ease;
}
.fixed-wa:hover {
  transform: scale(1.1);
  color: #FFFFFF;
}
@media (max-width: 768px) {
  .fixed-wa {
    bottom: 16px;
    right: 16px;
    width: 50px;
    height: 50px;
    font-size: 24px;
  }
}

.footer {
  background: rgb(239.7409090909, 238.0454545455, 232.9590909091);
  border-top: 1px solid #E5E5E0;
  padding: 48px 0 24px;
  margin-top: 64px;
}
.footer__inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 40px;
}
@media (max-width: 992px) {
  .footer__inner {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 576px) {
  .footer__inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}
.footer__brand .brand {
  margin-bottom: 16px;
}
.footer__brand p {
  color: #6C757D;
  margin-bottom: 20px;
}
.footer__title {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 20px;
  color: #1A1A1A;
}
.footer__nav {
  list-style: none;
}
.footer__nav li {
  margin-bottom: 12px;
}
.footer__nav li a {
  color: #6C757D;
}
.footer__nav li a:hover {
  color: #D36B46;
}
.footer__contacts p {
  color: #6C757D;
  margin-bottom: 8px;
}
.footer__contacts .phone {
  font-size: 1.2rem;
  font-weight: 600;
  color: #1A1A1A;
  margin: 12px 0;
}
.footer__requisites {
  margin-top: 20px;
  font-size: 0.85rem;
  color: #6C757D;
}
.footer__requisites p {
  margin-bottom: 4px;
}
.footer__bottom {
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid #E5E5E0;
  text-align: center;
  color: #6C757D;
  font-size: 0.9rem;
}

.offcanvas {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  max-width: 360px;
  height: 100vh;
  background: #FFFFFF;
  box-shadow: -4px 0 20px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  transition: right 0.3s ease;
  overflow-y: auto;
}
.offcanvas.active {
  right: 0;
}
.offcanvas__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px;
  border-bottom: 1px solid #E5E5E0;
}
.offcanvas__header .brand {
  font-size: 1.5rem;
}
.offcanvas__header .offcanvas-close {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  font-size: 1.5rem;
}
.offcanvas__header .offcanvas-close:hover {
  background: rgba(211, 107, 70, 0.1);
  color: #D36B46;
}
.offcanvas__nav {
  padding: 20px;
}
.offcanvas__nav a {
  display: block;
  padding: 14px 0;
  font-size: 1.1rem;
  font-weight: 500;
  border-bottom: 1px solid #E5E5E0;
}
.offcanvas__nav a:last-child {
  border-bottom: none;
}
.offcanvas__nav a:hover, .offcanvas__nav a.active {
  color: #D36B46;
}
.offcanvas__contacts {
  padding: 20px;
  margin-top: 20px;
  border-top: 1px solid #E5E5E0;
}
.offcanvas__contacts .contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  color: #6C757D;
}
.offcanvas__contacts .contact-item i {
  width: 24px;
  color: #D36B46;
}

.offcanvas-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.2s ease;
}
.offcanvas-overlay.active {
  opacity: 1;
  visibility: visible;
}

.card {
  background: #FFFFFF;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
  transition: all 0.2s ease;
}
.card:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}
.card__image {
  position: relative;
  aspect-ratio: 1/1;
  overflow: hidden;
  background: rgb(250.1727272727, 249.6363636364, 248.0272727273);
}
.card__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.card__image .badge {
  position: absolute;
  top: 12px;
  left: 12px;
}
.card__content {
  padding: 20px;
}
.card__title {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 8px;
}
.card__info {
  color: #6C757D;
  font-size: 0.9rem;
  margin-bottom: 12px;
}
.card__price {
  font-size: 1.5rem;
  font-weight: 700;
  color: #2B2B2B;
  margin-bottom: 4px;
}
.card__price small {
  font-size: 0.9rem;
  font-weight: 400;
  color: #6C757D;
}
.card__unit {
  font-size: 0.85rem;
  color: #6C757D;
  margin-bottom: 16px;
}
.card__actions {
  display: flex;
  gap: 12px;
}

.feature-card {
  background: #FFFFFF;
  border-radius: 12px;
  padding: 28px 24px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
  height: 100%;
  transition: all 0.2s ease;
}
.feature-card:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}
.feature-card__icon {
  width: 56px;
  height: 56px;
  background: rgba(211, 107, 70, 0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: #D36B46;
  font-size: 24px;
}
.feature-card__title {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 12px;
}
.feature-card__text {
  color: #6C757D;
  line-height: 1.6;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 768px) {
  .steps {
    grid-template-columns: 1fr;
  }
}
.steps .step {
  text-align: center;
}
.steps .step__number {
  width: 60px;
  height: 60px;
  background: #D36B46;
  color: #FFFFFF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 auto 24px;
}
.steps .step__title {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 12px;
}
.steps .step__text {
  color: #6C757D;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
@media (max-width: 768px) {
  .grid-2 {
    grid-template-columns: 1fr;
  }
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 992px) {
  .grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 576px) {
  .grid-3 {
    grid-template-columns: 1fr;
  }
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
@media (max-width: 992px) {
  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 576px) {
  .grid-4 {
    grid-template-columns: 1fr;
  }
}

.news-card {
  background: #FFFFFF;
  border-radius: 12px;
  padding: 24px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
  border-left: 4px solid #D36B46;
}
.news-card__date {
  color: #D36B46;
  font-weight: 500;
  margin-bottom: 12px;
  font-size: 0.9rem;
}
.news-card__title {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 12px;
}
.news-card__text {
  color: #6C757D;
  margin-bottom: 16px;
}
.news-card__link {
  color: #D36B46;
  font-weight: 500;
}
.news-card__link:hover {
  text-decoration: underline;
}

.table-wrapper {
  overflow-x: auto;
  background: #FFFFFF;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
}

.data-table {
  width: 100%;
  border-collapse: collapse;
}
.data-table th, .data-table td {
  padding: 16px;
  text-align: left;
  border-bottom: 1px solid #E5E5E0;
}
.data-table th {
  font-weight: 600;
  color: #1A1A1A;
  background: rgba(246, 245, 242, 0.5);
  white-space: nowrap;
}
.data-table td {
  color: #6C757D;
}
.data-table tbody tr {
  transition: all 0.2s ease;
}
.data-table tbody tr:hover {
  background: rgba(211, 107, 70, 0.03);
}
.data-table .status {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 500;
}
.data-table .status.status-instock {
  background: rgba(46, 125, 50, 0.1);
  color: #2E7D32;
}
.data-table .status.status-expected {
  background: rgba(237, 108, 2, 0.1);
  color: #ED6C02;
}
.data-table .status.status-order {
  background: rgba(2, 136, 209, 0.1);
  color: #0288D1;
}

.filters {
  background: #FFFFFF;
  border-radius: 12px;
  padding: 24px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
  margin-bottom: 32px;
}
.filters__title {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 20px;
}
.filters__group {
  margin-bottom: 20px;
}
.filters__group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  color: #1A1A1A;
}
.filters__search {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid #E5E5E0;
  border-radius: 8px;
  font-size: 1rem;
  transition: all 0.2s ease;
}
.filters__search:focus {
  outline: none;
  border-color: #D36B46;
}
.filters__select {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid #E5E5E0;
  border-radius: 8px;
  font-size: 1rem;
  background: #FFFFFF;
  cursor: pointer;
}
.filters__select:focus {
  outline: none;
  border-color: #D36B46;
}
.filters__actions {
  display: flex;
  gap: 12px;
  margin-top: 24px;
}

.pagination {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 40px;
}
.pagination__item {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: #FFFFFF;
  color: #1A1A1A;
  font-weight: 500;
  transition: all 0.2s ease;
}
.pagination__item:hover:not(.active) {
  background: rgba(211, 107, 70, 0.1);
  color: #D36B46;
}
.pagination__item.active {
  background: #D36B46;
  color: #FFFFFF;
}
.pagination__item.disabled {
  opacity: 0.5;
  pointer-events: none;
}

.hero {
  padding: 60px 0;
}
.hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
@media (max-width: 992px) {
  .hero__inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}
.hero__content h1 {
  margin-bottom: 24px;
}
.hero__content .subtitle {
  font-size: 1.2rem;
  color: #6C757D;
  margin-bottom: 32px;
}
.hero__image {
  background: #FFFFFF;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
  aspect-ratio: 4/3;
}
.hero__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.stock-section {
  background: #FFFFFF;
  border-radius: 12px;
  padding: 32px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
}
.stock-section__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}
@media (max-width: 576px) {
  .stock-section__header {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }
}

.news-section {
  background: #FFFFFF;
  border-radius: 12px;
  padding: 32px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
}
.news-section__list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.catalog__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}
@media (max-width: 576px) {
  .catalog__header {
    flex-direction: column;
    gap: 16px;
  }
}
.catalog__count {
  color: #6C757D;
}
.catalog__view-options {
  display: flex;
  gap: 8px;
}
.catalog__view-options .view-btn {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: #FFFFFF;
  border: 1.5px solid #E5E5E0;
}
.catalog__view-options .view-btn.active {
  background: #D36B46;
  border-color: #D36B46;
  color: #FFFFFF;
}
.catalog__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
@media (max-width: 1200px) {
  .catalog__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 992px) {
  .catalog__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 576px) {
  .catalog__grid {
    grid-template-columns: 1fr;
  }
}
.catalog__grid.view-list {
  grid-template-columns: 1fr;
}
.catalog__grid.view-list .card {
  display: grid;
  grid-template-columns: 200px 1fr auto;
}
@media (max-width: 768px) {
  .catalog__grid.view-list .card {
    grid-template-columns: 1fr;
  }
}
.catalog__grid.view-list .card__image {
  aspect-ratio: 1/1;
}

.filter-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}
.filter-tags .filter-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: #FFFFFF;
  border: 1.5px solid #E5E5E0;
  border-radius: 30px;
  font-size: 0.9rem;
}
.filter-tags .filter-tag button {
  color: #6C757D;
  font-size: 1rem;
}
.filter-tags .filter-tag button:hover {
  color: #D32F2F;
}

.product__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}
@media (max-width: 992px) {
  .product__inner {
    grid-template-columns: 1fr;
  }
}
.product__gallery .main-image {
  aspect-ratio: 1/1;
  border-radius: 12px;
  overflow: hidden;
  background: #FFFFFF;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
  margin-bottom: 16px;
}
.product__gallery .main-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.product__gallery .thumbnails {
  display: flex;
  gap: 12px;
}
.product__gallery .thumbnails .thumbnail {
  width: 80px;
  height: 80px;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.2s ease;
}
.product__gallery .thumbnails .thumbnail:hover, .product__gallery .thumbnails .thumbnail.active {
  border-color: #D36B46;
}
.product__gallery .thumbnails .thumbnail img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.product__info h1 {
  margin-bottom: 8px;
}
.product__info .product-sku {
  color: #6C757D;
  margin-bottom: 20px;
}
.product__info .product-price-block {
  background: #FFFFFF;
  border-radius: 12px;
  padding: 24px;
  margin-bottom: 24px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
}
.product__info .product-price-block .current-price {
  font-size: 2.5rem;
  font-weight: 700;
  color: #2B2B2B;
  margin-bottom: 8px;
}
.product__info .product-price-block .price-table {
  width: 100%;
  margin-top: 16px;
}
.product__info .product-price-block .price-table td {
  padding: 8px 0;
  border-bottom: 1px dashed #E5E5E0;
}
.product__info .product-price-block .price-table td:last-child {
  text-align: right;
  font-weight: 600;
}
.product__info .product-actions {
  display: flex;
  gap: 16px;
  margin-bottom: 32px;
}
@media (max-width: 576px) {
  .product__info .product-actions {
    flex-direction: column;
  }
}
.product__specs {
  background: #FFFFFF;
  border-radius: 12px;
  padding: 24px;
  margin-bottom: 24px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
}
.product__specs h3 {
  margin-bottom: 20px;
}
.product__specs .specs-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.product__specs .specs-grid .spec-item .spec-label {
  color: #6C757D;
  font-size: 0.9rem;
  margin-bottom: 4px;
}
.product__specs .specs-grid .spec-item .spec-value {
  font-weight: 500;
}
.product__recommended {
  margin-top: 64px;
}
.product__recommended h2 {
  margin-bottom: 32px;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
@media (max-width: 992px) {
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 576px) {
  .blog-grid {
    grid-template-columns: 1fr;
  }
}

.blog-card {
  background: #FFFFFF;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
  transition: all 0.2s ease;
}
.blog-card:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}
.blog-card:hover .blog-card__image img {
  transform: scale(1.05);
}
.blog-card__image {
  aspect-ratio: 16/9;
  overflow: hidden;
}
.blog-card__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.3s ease;
}
.blog-card__content {
  padding: 24px;
}
.blog-card__date {
  color: #D36B46;
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 12px;
}
.blog-card__title {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 12px;
}
.blog-card__excerpt {
  color: #6C757D;
  margin-bottom: 16px;
  line-height: 1.6;
}
.blog-card__link {
  color: #D36B46;
  font-weight: 500;
}
.blog-card__link:hover {
  text-decoration: underline;
}

.article {
  max-width: 800px;
  margin: 0 auto;
}
.article__header {
  margin-bottom: 32px;
}
.article__header .article-date {
  color: #D36B46;
  font-weight: 500;
  margin-bottom: 12px;
}
.article__header h1 {
  margin-bottom: 20px;
}
.article__image {
  aspect-ratio: 21/9;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 32px;
}
.article__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.article__content {
  font-size: 1.05rem;
  line-height: 1.7;
}
.article__content h2 {
  margin-top: 40px;
  margin-bottom: 20px;
}
.article__content h3 {
  margin-top: 32px;
  margin-bottom: 16px;
}
.article__content p {
  margin-bottom: 20px;
  color: rgb(51.5, 51.5, 51.5);
}
.article__content ul, .article__content ol {
  margin-bottom: 20px;
  padding-left: 24px;
}
.article__content ul li, .article__content ol li {
  margin-bottom: 8px;
}
.article__content blockquote {
  border-left: 4px solid #D36B46;
  padding-left: 24px;
  margin: 24px 0;
  font-style: italic;
  color: #6C757D;
}
.article__footer {
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid #E5E5E0;
}
.article__footer .back-link {
  color: #D36B46;
  font-weight: 500;
}
.article__footer .back-link:hover {
  text-decoration: underline;
}/*# sourceMappingURL=main.css.map */