/* Mantella.nl — blog-artikel */

.article-sec { padding: 0 var(--pad-x); }
.article-wrap { display: flex; flex-direction: column; align-items: center; padding: 72px 0 88px; }

.article {
  width: 60%;
  max-width: 864px;
  display: flex;
  flex-direction: column;
  gap: 36px;
}

.article__head { display: flex; flex-direction: column; gap: 20px; }
.article__meta-row { display: flex; align-items: center; gap: 12px; }
.article__cat { font-size: 13px; padding: 7px 16px; }
.article__date { font-size: 15px; color: #999; }
.article__title { font-family: var(--font-head); font-weight: 900; font-size: 54px; line-height: 1.08; color: var(--c-black-2); text-wrap: balance; }

.article__author { display: flex; align-items: center; gap: 14px; }
.article__author-photo { width: 46px; height: 46px; border-radius: 50%; object-fit: cover; border: 2px solid var(--c-orange); }
.article__author-name { font-size: 16px; color: #555; }
.article__author-name strong { color: var(--c-black-2); }

.article__image { height: 380px; border-radius: var(--r-card-lg); padding: 24px; box-shadow: 0 30px 80px rgba(0, 0, 0, 0.12); }

.article__lead { font-size: 21px; line-height: 1.75; color: #333; font-weight: 500; text-wrap: pretty; }

.article__block { display: flex; flex-direction: column; gap: 18px; }
.article__block h2 { font-family: var(--font-head); font-weight: 800; font-size: 30px; color: var(--c-black-2); }
.article__block p { font-size: 18px; line-height: 1.8; color: #444; text-wrap: pretty; }

.article__quote {
  margin: 0;
  border-left: 4px solid;
  border-image: linear-gradient(to bottom, #e4003a, #f39200) 1;
  padding: 6px 0 6px 32px;
}
.article__quote p { font-family: var(--font-head); font-weight: 500; font-size: 25px; line-height: 1.5; color: var(--c-black-2); text-wrap: pretty; }

.article__tips { display: flex; flex-direction: column; gap: 14px; }
.article__tip {
  display: flex; gap: 14px; align-items: flex-start;
  background: #fff; border: 1px solid var(--c-border-light); border-radius: 12px;
  padding: 20px 24px;
  font-size: 17px; line-height: 1.6; color: #444;
}
.article__tip .material-symbols-outlined { font-size: 21px; color: var(--c-orange); margin-top: 2px; }
.article__tip strong { color: var(--c-black-2); }

.article__cta {
  position: relative;
  background: var(--c-black-2);
  border-radius: var(--r-card-lg);
  padding: 40px 44px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  overflow: hidden;
}
.article__cta-text { position: relative; display: flex; flex-direction: column; gap: 6px; }
.article__cta-title { font-family: var(--font-head); font-weight: 800; font-size: 24px; color: #fff; }
.article__cta-sub { font-size: 16px; color: #999; }
.article__cta-btn { position: relative; white-space: nowrap; font-size: 16px; padding: 15px 32px; }

.article__related { display: flex; flex-direction: column; gap: 20px; border-top: 1px solid var(--c-border-light); padding-top: 36px; }
.article__related-label { font-size: 14px; color: #999; letter-spacing: 2px; text-transform: uppercase; }
.article__related-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.article__related-card {
  background: #fff; border: 1px solid var(--c-border-light); border-radius: 14px;
  padding: 26px 30px; display: flex; flex-direction: column; gap: 8px;
  text-decoration: none;
  transition: border-color 0.2s ease, transform 0.2s ease;
}
.article__related-card:hover { border-color: var(--c-red); transform: translateY(-3px); }
.article__related-cat { font-size: 13px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; }
.article__related-title { font-family: var(--font-head); font-weight: 700; font-size: 19px; color: var(--c-black-2); line-height: 1.35; }

@media (max-width: 1080px) {
  .article { width: 80%; }
  .article__title { font-size: 39px; }
}

@media (max-width: 700px) {
  .article-wrap { padding: 43px 0 53px; }
  .article { width: 88%; }
  .article__title { font-size: 33px; }
  .article__image { height: 209px; }
  .article__block h2 { font-size: 23px; }
  .article__cta { flex-wrap: wrap; align-items: flex-start; gap: 20px; }
  .article__cta-btn { width: 100%; justify-content: center; }
  .article__related-grid { grid-template-columns: 1fr; }
}
