/* ================================================================
   ARGOTRANS — стилове за блог статиите
   ----------------------------------------------------------------
   Извлечено от inline блока на blog/prichini-za-spukana-guma, за да
   не се дублира ~190 реда CSS във всяка нова статия. Променливите
   (--yellow и др.) идват от style.css.
   ================================================================ */

.article-hero {
  background: linear-gradient(to bottom, rgba(10,10,10,0.82) 0%, rgba(10,10,10,0.94) 100%), url('../../images/putna-pomosht/putna-pomosht-sofia-311.jpg') center/cover no-repeat;
  padding: 110px 20px 50px;
  position: relative;
  overflow: hidden;
}
.article-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 50% at 50% 50%, rgba(255,200,0,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.article-hero-inner {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
}
.article-category {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 11px;
  letter-spacing: 3px;
  color: #000;
  background: var(--yellow);
  padding: 4px 12px;
  border-radius: 3px;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.article-hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(28px, 4vw, 52px);
  font-weight: 500;
  color: #fff;
  line-height: 1.15;
  margin: 0 0 16px;
}
.article-meta {
  font-family: var(--font-body);
  font-size: 13px;
  color: #555;
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.article-meta span { display: flex; align-items: center; gap: 6px; }

.article-body {
  background: #0f0f0f;
  padding: 50px 20px 80px;
}
.article-content {
  max-width: 800px;
  margin: 0 auto;
  font-family: var(--font-body);
  font-size: 16px;
  color: #c0c0c0;
  line-height: 1.8;
}
.article-content h2 {
  font-family: var(--font-heading);
  font-size: clamp(20px, 3vw, 28px);
  font-weight: 500;
  color: #fff;
  margin: 48px 0 16px;
  padding-top: 8px;
  border-top: 2px solid #1e1e1e;
}
.article-content h2:first-of-type { margin-top: 0; border-top: none; padding-top: 0; }
.article-content p { margin: 0 0 20px; }
.article-content strong { color: #fff; }
.article-content a { color: var(--yellow); text-decoration: none; }
.article-content a:hover { text-decoration: underline; }

.reason-card {
  background: #161616;
  border: 1px solid #252525;
  border-radius: 10px;
  padding: 24px 28px;
  margin: 0 0 20px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
}
.reason-number {
  font-family: var(--font-heading);
  font-size: 48px;
  color: var(--yellow);
  line-height: 1;
  min-width: 50px;
  opacity: 0.7;
}
.reason-content h3 {
  font-family: var(--font-heading);
  font-size: 20px;
  color: #fff;
  margin: 0 0 8px;
  font-weight: 500;
}
.reason-content p {
  font-size: 14px;
  color: #8a8a8a;
  margin: 0 0 10px;
  line-height: 1.6;
}
.reason-tip {
  font-size: 13px;
  color: var(--yellow);
  display: flex;
  align-items: flex-start;
  gap: 6px;
}

.tip-box {
  background: rgba(255, 200, 0, 0.06);
  border: 1px solid rgba(255, 200, 0, 0.2);
  border-radius: 8px;
  padding: 20px 24px;
  margin: 32px 0;
}
.tip-box h3 {
  font-family: var(--font-heading);
  font-size: 16px;
  color: var(--yellow);
  margin: 0 0 10px;
  font-weight: 500;
}
.tip-box ul {
  padding-left: 18px;
  margin: 0;
}
.tip-box li {
  font-size: 14px;
  color: #9a9a9a;
  margin-bottom: 6px;
}

.article-cta {
  background: #161616;
  border: 1px solid #252525;
  border-radius: 12px;
  padding: 36px 32px;
  text-align: center;
  margin-top: 48px;
}
.article-cta h3 {
  font-family: var(--font-heading);
  font-size: 26px;
  color: #fff;
  margin: 0 0 8px;
}
.article-cta h3 span { color: var(--yellow); }
.article-cta p { font-size: 14px; color: #7a7a7a; margin: 0 0 20px; }
.article-cta a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--yellow);
  color: #000;
  font-family: var(--font-heading);
  font-size: 15px;
  letter-spacing: 1px;
  padding: 14px 30px;
  border-radius: 6px;
  text-decoration: none;
  text-transform: uppercase;
  transition: opacity 0.2s;
}
.article-cta a:hover { opacity: 0.88; text-decoration: none; }

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 14px;
  color: #555;
  text-decoration: none;
  margin-bottom: 32px;
  transition: color 0.2s;
}
.back-link:hover { color: var(--yellow); }
