/* ==============================================
   Blog Article Styles — Metry.Group Design System
   ============================================== */

/* --- Article Container --- */
.blog-article {
  font-family: 'NT Somic', sans-serif;
  font-weight: 300;
  font-size: 18px;
  line-height: 1.8;
  color: #261C15;
  background: #E7E3DA;
}

.blog-article *,
.blog-article *::before,
.blog-article *::after {
  box-sizing: border-box;
}

/* === Override Hello Elementor reset.css pink (#CC3366) globally === */
.blog-article a {
  color: #261C15;
}
.blog-article a:hover,
.blog-article a:active {
  color: #9C4124;
}
.blog-article button,
.blog-article [type="button"],
.blog-article [type="submit"] {
  background-color: transparent;
  border-color: #261C15;
  color: #261C15;
}
.blog-article button:hover,
.blog-article button:focus,
.blog-article [type="button"]:hover,
.blog-article [type="button"]:focus,
.blog-article [type="submit"]:hover,
.blog-article [type="submit"]:focus {
  background-color: #261C15;
  color: #E7E3DA;
}
/* === End Hello Elementor override === */

.blog-article__content {
  max-width: 820px;
  margin: 0 auto;
  padding: 0 60px;
}

/* --- Back to Blog [a] --- */
.blog-article__back {
  max-width: 1200px;
  margin: 0 auto;
  padding: 30px 20px 20px;
}

.blog-article__back-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: 'Unbounded', sans-serif;
  font-weight: 400;
  font-size: 14px;
  color: #9C4124;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: opacity 0.2s;
}

.blog-article__back-link:hover {
  opacity: 0.7;
}

.blog-article__back-link svg {
  flex-shrink: 0;
}

/* --- Titles --- */
.blog-article__title {
  font-family: 'Unbounded', sans-serif;
  font-weight: 400;
  font-size: 36px;
  text-transform: uppercase;
  line-height: 1.3;
  margin: 0;
  padding: 10px 20px 0;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.blog-article__subtitle {
  font-family: 'Unbounded', sans-serif;
  font-weight: 500;
  font-size: 28px;
  line-height: 1.3;
  margin: 8px 0 0;
  padding: 0 20px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

/* --- Action Buttons [b] --- */
.blog-article__actions {
  max-width: 1200px;
  margin: 20px auto 30px;
  padding: 0 20px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

button.blog-article__action-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border: 1.5px solid #261C15;
  border-radius: 30px;
  background: transparent;
  font-family: 'NT Somic', sans-serif;
  font-weight: 400;
  font-size: 14px;
  color: #261C15;
  cursor: pointer;
  transition: all 0.2s;
  white-space: nowrap;
}

.blog-article__action-btn:hover,
button.blog-article__action-btn:hover {
  background: #261C15;
  color: #E7E3DA;
}

.blog-article__action-btn:hover svg {
  stroke: #E7E3DA;
}

.blog-article__action-btn svg {
  flex-shrink: 0;
  transition: stroke 0.2s;
}

/* --- Share Dropdown --- */
.blog-article__share-wrapper {
  position: relative;
}

.blog-article__share-dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: #FFFFFF;
  border-radius: 12px;
  box-shadow: 0 4px 24px rgba(38, 28, 21, 0.15);
  padding: 8px 0;
  min-width: 220px;
  z-index: 100;
  animation: shareDropIn 0.2s ease;
}

.blog-article__share-dropdown--open {
  display: block;
}

@keyframes shareDropIn {
  from { opacity: 0; transform: translateY(-6px); }
  to { opacity: 1; transform: translateY(0); }
}

.blog-article__share-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 20px;
  font-family: 'NT Somic', sans-serif;
  font-weight: 400;
  font-size: 14px;
  color: #261C15;
  text-decoration: none;
  transition: background 0.15s;
  cursor: pointer;
  border: none;
  background: none;
  width: 100%;
  text-align: left;
}

.blog-article__share-item:hover,
button.blog-article__share-item:hover,
button.blog-article__share-item:focus {
  background: rgba(38, 28, 21, 0.05);
  color: #261C15;
}

.blog-article__share-item svg {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
}

.blog-article__share-sep {
  height: 1px;
  background: rgba(38, 28, 21, 0.08);
  margin: 4px 16px;
}

/* --- Content typography --- */
.blog-article__content p {
  margin: 0 0 16px;
}

.blog-article__content strong {
  font-weight: 700;
}

.blog-article__content em {
  font-style: italic;
}

.blog-article__highlight-text {
  text-align: center;
  font-weight: 700;
  font-size: 20px;
  padding: 16px 0;
}

/* --- Hero Image --- */
.blog-article__hero-image {
  margin: 32px 0;
  border-radius: 12px;
  overflow: hidden;
}

.blog-article__hero-image img {
  width: 100%;
  height: auto;
  display: block;
}

/* --- District Sections --- */
.blog-article__district {
  padding: 40px 0;
  border-top: 1px solid rgba(38, 28, 21, 0.1);
}

.blog-article__district:first-of-type {
  border-top: none;
}

/* Ensure even spacing: zero out bottom margin of all last children in districts */
.blog-article__district > *:last-child {
  margin-bottom: 0;
}

.blog-article__district > *:last-child > *:last-child {
  margin-bottom: 0;
}

.blog-article__district > p:last-of-type,
.blog-article__district .blog-article__pros:last-child p:last-child,
.blog-article__district .blog-article__cons:last-child p:last-child,
.blog-article__district .blog-article__locals:last-child p:last-child,
.blog-article__district .blog-article__tip:last-child p:last-child {
  margin-bottom: 0;
}

/* Even spacing for conclusion */
.blog-article__conclusion {
  padding: 32px 0 20px;
  border-top: 1px solid rgba(38, 28, 21, 0.1);
}

.blog-article__district-title {
  font-family: 'Unbounded', sans-serif;
  font-weight: 400;
  font-size: 26px;
  line-height: 1.4;
  margin: 0 0 20px;
}

.blog-article__district-name {
  display: block;
  color: #261C15;
}

.blog-article__district-tagline {
  display: block;
  color: #9C4124;
  font-size: 22px;
  margin-top: 4px;
}

/* --- District Photos --- */
.blog-article__district-photos {
  display: flex;
  gap: 16px;
  margin: 28px 0 32px;
  border-radius: 12px;
  overflow: hidden;
}

.blog-article__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.blog-article__photo--wide {
  flex: 1.7;
  border-radius: 12px;
  overflow: hidden;
}

.blog-article__photo--narrow {
  flex: 1;
  border-radius: 12px;
  overflow: hidden;
}

.blog-article__district-photos--equal .blog-article__photo {
  flex: 1;
  border-radius: 12px;
  overflow: hidden;
}

/* --- Pros / Cons --- */
.blog-article__pros,
.blog-article__cons {
  margin: 16px 0;
  padding: 20px 24px;
  border-radius: 12px;
}

.blog-article__pros {
  background: rgba(38, 28, 21, 0.04);
}

.blog-article__cons {
  background: rgba(156, 65, 36, 0.06);
}

.blog-article__pros h4,
.blog-article__cons h4 {
  font-family: 'NT Somic', sans-serif;
  font-weight: 700;
  font-size: 18px;
  margin: 0 0 10px;
}

.blog-article__pros p,
.blog-article__cons p {
  margin: 0 0 8px;
}

.blog-article__note {
  font-size: 16px;
  opacity: 0.75;
}

/* --- Locals & Tips --- */
.blog-article__section-title--accent {
  font-family: 'Unbounded', sans-serif;
  font-weight: 400;
  font-size: 16px;
  color: #9C4124;
  margin: 24px 0 8px;
}

.blog-article__locals,
.blog-article__tip {
  margin: 16px 0;
}

.blog-article__ps {
  font-size: 16px;
  opacity: 0.8;
}

/* --- Promo Banner [c] — single terracotta block --- */
.blog-article__promo-banner {
  max-width: 1200px;
  margin: 40px auto;
  padding: 0 20px;
  box-sizing: border-box;
}

.blog-article__promo-link {
  display: block;
  border-radius: 20px;
  overflow: hidden;
  text-decoration: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.blog-article__promo-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(156, 65, 36, 0.25);
}

.blog-article__promo-link:hover,
.blog-article__promo-link:active {
  color: #E7E3DA;
}

.blog-article__promo-body {
  background: #9C4124;
  padding: 20px 28px;
  display: flex;
  align-items: stretch;
  gap: 24px;
  min-height: 80px;
}

.blog-article__promo-text {
  font-family: 'NT Somic', sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 18px;
  line-height: 1.5;
  color: #E7E3DA;
  margin: 0;
  flex: 1;
  align-self: center;
}

/* Right column: logo top + CTA bottom */
.blog-article__promo-right {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-end;
  flex-shrink: 0;
  gap: 8px;
}

.blog-article__promo-logo {
  flex-shrink: 0;
  display: block;
  filter: brightness(0) invert(0.93) sepia(0.15) saturate(0.5);
}

.blog-article__promo-cta {
  font-family: 'Unbounded', sans-serif;
  font-weight: 400;
  font-size: 16px;
  color: #E7E3DA;
  text-transform: uppercase;
  text-decoration: underline;
  text-underline-offset: 4px;
  text-decoration-thickness: 1.5px;
  white-space: nowrap;
  letter-spacing: 0.3px;
}

/* --- Conclusion (styles defined in district section above) --- */

.blog-article__conclusion-title {
  font-family: 'Unbounded', sans-serif;
  font-weight: 400;
  font-size: 26px;
  margin: 0 0 16px;
}

.blog-article__signature {
  margin-top: 24px;
  padding: 24px;
  border-left: 4px solid #9C4124;
}

.blog-article__signature-brand {
  color: #9C4124;
  font-weight: 700;
}

/* --- CTA Block [d] --- */
.blog-article__cta-block {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 20px 40px;
}

.blog-article__cta-image {
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 24px;
}

.blog-article__cta-image img {
  width: 100%;
  height: auto;
  display: block;
}

.blog-article__cta-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

a.blog-article__cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 40px;
  border-radius: 30px;
  font-family: 'Unbounded', sans-serif;
  font-weight: 400;
  font-size: 16px;
  text-decoration: none;
  transition: background 0.25s, color 0.25s, border-color 0.25s;
  white-space: nowrap;
  flex: 1;
  min-width: 200px;
  text-align: center;
  border: 2px solid transparent;
  box-sizing: border-box;
}

a.blog-article__cta-btn--primary {
  background: #9C4124;
  color: #E7E3DA;
  border-color: #9C4124;
}

.blog-article a.blog-article__cta-btn--primary:hover,
.blog-article a.blog-article__cta-btn--primary:focus {
  background: #E7E3DA;
  color: #9C4124;
  border-color: #9C4124;
}

a.blog-article__cta-btn--secondary {
  background: transparent;
  color: #261C15;
  border-color: #261C15;
}

.blog-article a.blog-article__cta-btn--secondary:hover,
.blog-article a.blog-article__cta-btn--secondary:focus {
  background: #9C4124;
  color: #E7E3DA;
  border-color: #9C4124;
}

/* --- Comments Section --- */
.blog-article__comments-section {
  padding: 40px 0;
  border-top: 1px solid rgba(38, 28, 21, 0.1);
}

.blog-article__comments-title {
  font-family: 'Unbounded', sans-serif;
  font-weight: 400;
  font-size: 24px;
  margin: 0 0 16px;
}

.blog-article__comments-placeholder {
  opacity: 0.5;
  font-style: italic;
}

/* --- Comment Form --- */
.blog-article__comments-list {
  margin-bottom: 24px;
}

.blog-comment {
  padding: 20px 0;
  border-bottom: 1px solid rgba(38, 28, 21, 0.08);
}

.blog-comment:last-child {
  border-bottom: none;
}

.blog-comment__header {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 8px;
}

.blog-comment__author {
  font-weight: 700;
  font-size: 16px;
  color: #261C15;
}

.blog-comment__date {
  font-size: 14px;
  color: rgba(38, 28, 21, 0.5);
}

.blog-comment__text {
  font-size: 16px;
  line-height: 1.7;
}

.blog-comment__text p {
  margin: 0;
}

.blog-article__comment-form-wrapper {
  margin-top: 24px;
  padding: 24px;
  background: rgba(38, 28, 21, 0.03);
  border-radius: 12px;
}

.blog-article__comment-user {
  font-weight: 700;
  font-size: 15px;
  margin-bottom: 12px;
  color: #261C15;
}

.blog-article__comment-textarea {
  width: 100%;
  padding: 14px 16px;
  font-family: 'NT Somic', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #261C15;
  background: rgba(38, 28, 21, 0.04);
  border: 1px solid rgba(38, 28, 21, 0.15);
  border-radius: 8px;
  resize: vertical;
  transition: border-color 0.2s;
}

.blog-article__comment-textarea:focus {
  outline: none;
  border-color: #9C4124;
}

.blog-article__comment-actions {
  margin-top: 12px;
  display: flex;
  justify-content: flex-end;
}

button.blog-article__comment-submit {
  padding: 10px 28px;
  background: #9C4124;
  color: #E7E3DA;
  font-family: 'NT Somic', sans-serif;
  font-weight: 400;
  font-size: 15px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.2s;
}

button.blog-article__comment-submit:hover,
button.blog-article__comment-submit:focus {
  background: #7d3419;
  color: #E7E3DA;
}

button.blog-article__comment-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.blog-article__comment-status {
  margin-top: 10px;
  font-size: 14px;
  padding: 8px 14px;
  border-radius: 6px;
}

.blog-article__comment-status--success {
  background: rgba(76, 175, 80, 0.1);
  color: #2e7d32;
}

.blog-article__comment-status--error {
  background: rgba(156, 65, 36, 0.1);
  color: #9C4124;
}

/* Auth prompt */
.blog-article__comment-auth-prompt {
  margin-top: 20px;
  padding: 20px 24px;
  background: rgba(38, 28, 21, 0.03);
  border-radius: 12px;
  text-align: center;
}

.blog-article__comment-auth-prompt p {
  margin: 0;
  font-size: 16px;
  color: rgba(38, 28, 21, 0.7);
}

button.blog-article__auth-link {
  background: none;
  border: none;
  padding: 0;
  font-family: 'NT Somic', sans-serif;
  font-size: inherit;
  color: #9C4124;
  text-decoration: underline;
  cursor: pointer;
  transition: opacity 0.2s;
}

button.blog-article__auth-link:hover,
button.blog-article__auth-link:focus {
  background: none;
  color: #9C4124;
  opacity: 0.7;
  border: none;
}

/* --- Auth Modals --- */
.blog-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(38, 28, 21, 0.55);
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.blog-modal-content {
  background: #E7E3DA;
  border-radius: 20px;
  padding: 40px;
  width: 100%;
  max-width: 480px;
  position: relative;
  animation: blogModalIn 0.25s ease;
}

@keyframes blogModalIn {
  from { opacity: 0; transform: translateY(12px) scale(0.97); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

button.blog-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  background: transparent;
  border-radius: 50%;
  cursor: pointer;
  transition: background 0.2s;
  color: #261C15;
  padding: 0;
  box-sizing: border-box;
}

button.blog-modal-close svg {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

button.blog-modal-close:hover,
button.blog-modal-close:focus {
  background: rgba(38, 28, 21, 0.08);
  color: #261C15;
}

.blog-modal-title {
  font-family: 'Unbounded', sans-serif;
  font-weight: 400;
  font-size: 28px;
  text-transform: uppercase;
  margin: 0 0 8px;
  color: #261C15;
}

.blog-modal-subtitle {
  font-size: 15px;
  color: rgba(38, 28, 21, 0.6);
  margin: 0 0 24px;
}

.blog-modal-error {
  background: rgba(156, 65, 36, 0.1);
  color: #9C4124;
  padding: 10px 16px;
  border-radius: 8px;
  font-size: 14px;
  margin-bottom: 16px;
}

.blog-modal-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.blog-modal-row {
  display: flex;
  gap: 12px;
}

.blog-modal-row .blog-modal-field {
  flex: 1;
}

.blog-modal-field {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.blog-modal-label {
  font-size: 13px;
  font-weight: 400;
  color: rgba(38, 28, 21, 0.6);
}

.blog-modal-input {
  padding: 12px 14px;
  font-family: 'NT Somic', sans-serif;
  font-size: 16px;
  color: #261C15;
  background: rgba(38, 28, 21, 0.04);
  border: 1px solid rgba(38, 28, 21, 0.15);
  border-radius: 8px;
  transition: border-color 0.2s;
}

.blog-modal-input:focus {
  outline: none;
  border-color: #9C4124;
}

.blog-modal-consent {
  font-size: 13px;
  color: rgba(38, 28, 21, 0.6);
  line-height: 1.5;
}

.blog-modal-checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  cursor: pointer;
}

.blog-modal-checkbox {
  accent-color: #9C4124;
  margin-top: 3px;
  flex-shrink: 0;
}

.blog-modal-consent a {
  color: #9C4124;
  text-decoration: underline;
}

button.blog-modal-submit {
  padding: 14px;
  border: none;
  background: #9C4124;
  color: #E7E3DA;
  font-family: 'Unbounded', sans-serif;
  font-weight: 700;
  font-size: 16px;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: background 0.2s;
  text-align: center;
}

button.blog-modal-submit:hover,
button.blog-modal-submit:focus {
  background: #7d3419;
  color: #E7E3DA;
}

button.blog-modal-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.blog-modal-switch {
  text-align: center;
  font-size: 14px;
  color: rgba(38, 28, 21, 0.6);
  margin: 20px 0 0;
}

/* ==============================
   RESPONSIVE — Tablet (768px)
   ============================== */
@media (max-width: 768px) {
  .blog-article {
    font-size: 17px;
  }

  .blog-article__content {
    padding: 0 30px;
  }

  .blog-article__back {
    padding: 25px 30px 15px;
  }

  .blog-article__title {
    font-size: 28px;
    padding: 10px 25px 0;
  }

  .blog-article__subtitle {
    font-size: 22px;
    padding: 0 25px;
  }

  .blog-article__actions {
    padding: 0 25px;
  }

  .blog-article__district-title {
    font-size: 22px;
  }

  .blog-article__district-tagline {
    font-size: 18px;
  }

  .blog-article__district-photos {
    flex-direction: column;
  }

  .blog-article__photo--wide,
  .blog-article__photo--narrow {
    flex: none;
  }

  .blog-article__district-photos--equal {
    flex-direction: row;
  }

  .blog-article__cta-block {
    padding: 20px 25px 40px;
  }

  .blog-article__cta-btn {
    font-size: 14px;
    padding: 14px 30px;
  }

  .blog-article__promo-banner {
    padding: 0 10px;
    margin: 28px 0;
  }

  .blog-article__promo-body {
    padding: 16px 20px;
    gap: 12px;
    min-height: auto;
    flex-direction: column;
    position: relative;
  }

  .blog-article__promo-text {
    font-size: 16px;
    padding-right: 40px;
  }

  .blog-article__promo-right {
    flex-direction: row-reverse;
    justify-content: flex-end;
    align-items: center;
    gap: 0;
  }

  .blog-article__promo-logo {
    position: absolute;
    top: 14px;
    right: 16px;
  }

  .blog-article__promo-cta {
    font-size: 15px;
    white-space: normal;
    text-align: left;
  }

  .blog-modal-content {
    padding: 32px 24px;
  }

  .blog-modal-title {
    font-size: 24px;
  }

  .blog-modal-row {
    flex-direction: column;
    gap: 16px;
  }
}

/* ==============================
   RESPONSIVE — Mobile (375px)
   ============================== */
@media (max-width: 480px) {
  .blog-article {
    font-size: 16px;
  }

  .blog-article__content {
    padding: 0 20px;
  }

  .blog-article__back {
    padding: 20px 20px 10px;
  }

  .blog-article__title {
    font-size: 22px;
    padding: 10px 20px 0;
  }

  .blog-article__subtitle {
    font-size: 18px;
    padding: 0 20px;
  }

  .blog-article__actions {
    padding: 0 20px;
    flex-direction: column;
  }

  button.blog-article__action-btn {
    width: 100%;
    justify-content: center;
  }

  .blog-article__district {
    padding: 24px 0;
  }

  .blog-article__district-title {
    font-size: 19px;
  }

  .blog-article__district-tagline {
    font-size: 16px;
  }

  .blog-article__district-photos--equal {
    flex-direction: column;
  }

  .blog-article__pros,
  .blog-article__cons {
    padding: 16px 18px;
  }

  .blog-article__cta-buttons {
    flex-direction: column;
  }

  .blog-article__cta-btn {
    flex: none;
    width: 100%;
    font-size: 14px;
    padding: 14px 24px;
  }

  .blog-article__conclusion-title {
    font-size: 22px;
  }

  .blog-article__highlight-text {
    font-size: 18px;
  }

  .blog-article__promo-banner {
    padding: 0 10px;
    margin: 24px 0;
  }

  .blog-article__promo-link {
    border-radius: 14px;
  }

  .blog-article__promo-body {
    padding: 14px 16px;
    gap: 10px;
    min-height: auto;
    flex-direction: column;
    position: relative;
  }

  .blog-article__promo-text {
    font-size: 15px;
    line-height: 1.4;
    padding-right: 36px;
  }

  .blog-article__promo-right {
    flex-direction: row-reverse;
    justify-content: flex-end;
    align-items: center;
    gap: 0;
  }

  .blog-article__promo-logo {
    width: 32px;
    height: 32px;
    position: absolute;
    top: 12px;
    right: 14px;
  }

  .blog-article__promo-cta {
    font-size: 14px;
    white-space: normal;
    text-align: left;
  }

  .blog-modal-overlay {
    padding: 12px;
  }

  .blog-modal-content {
    padding: 28px 20px;
  }

  .blog-modal-title {
    font-size: 22px;
  }
}

/* ========================
   Article #2 — Place cards
   ======================== */
.blog-article__place {
  margin-bottom: 48px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(38, 28, 21, 0.08);
}

.blog-article__place:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.blog-article__place-title {
  font-family: 'Unbounded', sans-serif;
  font-size: 22px;
  font-weight: 400;
  color: #261C15;
  margin: 0 0 20px 0;
  line-height: 1.4;
}

.blog-article__separator {
  border: none;
  border-top: 1px solid rgba(38, 28, 21, 0.12);
  margin: 48px auto;
  max-width: 1200px;
}

@media (max-width: 768px) {
  .blog-article__place-title {
    font-size: 18px;
  }
  .blog-article__place {
    margin-bottom: 36px;
    padding-bottom: 24px;
  }
  .blog-article__separator {
    margin: 32px auto;
  }
}

@media (max-width: 480px) {
  .blog-article__place-title {
    font-size: 16px;
  }
  .blog-article__place {
    margin-bottom: 28px;
    padding-bottom: 20px;
  }
  .blog-article__separator {
    margin: 24px auto;
  }
}
