@charset "UTF-8";
:root {
  --brand-primary: #0d7272;
  --brand-primary-dark: #095858;
  --brand-primary-light: #0e8a8a;
  --brand-accent: #E07818;
  --brand-accent-light: #f08828;
  --brand-text: #1a2332;
  --brand-text-subtle: #5a6e82;
  --brand-text-muted: #8fa0b0;
  --brand-bg: #ffffff;
  --brand-page-bg: #f4f6f8;
  --brand-border: #e2e8ef;
  --brand-sidebar-bg: #f0f8f8;
  --font-heading: 'Inter', sans-serif;
  --font-body: 'Inter', sans-serif;
  --font-display: 'Playfair Display', serif;
}

body.blog,
body.single {
  background: var(--brand-page-bg);
}

.section-header .section-title {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 800;
  color: var(--brand-text);
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}
.section-header .section-title span {
  color: var(--brand-primary);
}
.section-header .section-subtitle {
  font-size: 14px;
  color: var(--brand-text-subtle);
  margin-top: 6px;
  font-weight: 400;
  margin-bottom: 0;
}

.blog-hero-title {
  font-family: var(--font-heading);
  font-size: 36px;
  font-weight: 800;
  color: var(--brand-text);
  letter-spacing: -0.03em;
  margin-bottom: 8px;
}
.blog-hero-title em {
  font-style: normal;
  color: var(--brand-primary);
}

.article-h1 {
  font-family: var(--font-heading);
  font-size: 32px;
  font-weight: 800;
  color: var(--brand-text);
  line-height: 1.25;
  letter-spacing: -0.025em;
  margin-bottom: 24px;
}
@media (max-width: 767.98px) {
  .article-h1 {
    font-size: 24px;
  }
}

.article-content h2 {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 700;
  color: var(--brand-text);
  margin: 28px 0 12px;
  letter-spacing: -0.01em;
}
.article-content h3 {
  font-family: var(--font-heading);
  font-size: 20px;
  margin: 20px 0 12px;
  font-weight: 600;
  color: var(--brand-text);
}
.article-content h4,
.article-content h5,
.article-content h6 {
  font-family: var(--font-heading);
  color: var(--brand-text);
}
.article-content p {
  font-size: 15px;
  color: var(--brand-text-subtle);
  line-height: 1.75;
  margin-bottom: 16px;
}
.article-content p:last-of-type {
  margin-bottom: 0;
}
.article-content strong {
  color: var(--brand-text);
  font-weight: 700;
}
.article-content a {
  color: var(--brand-primary);
  text-decoration: none;
  border-bottom: 1px solid rgba(13, 114, 114, 0.3);
}
.article-content a:hover {
  border-bottom-color: var(--brand-primary);
}

@keyframes pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}
.single .site-main,
.search .site-main,
.category .site-main,
.blog .site-main {
  padding-top: 126px;
  padding-bottom: 48px;
}

.blog .site-header,
.single .site-header,
.search .site-header,
.archive .site-header,
.category .site-header {
  background-color: #006d76;
}

.search .page-header {
  margin-top: clamp(1.5rem, 1.2404rem + 1.1538vw, 2.625rem);
}
.search h1 {
  font-family: var(--font-heading);
  color: #555;
  text-transform: none;
  font-size: clamp(1.5rem, 1.3269rem + 0.7692vw, 2.25rem);
}
.search h1 span {
  color: #333;
  text-transform: uppercase;
}

.view-switcher {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #0a1a2a;
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 10px 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.view-switcher span {
  color: rgba(255, 255, 255, 0.45);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-right: 8px;
}

.vs-btn {
  padding: 6px 16px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: transparent;
  color: rgba(255, 255, 255, 0.55);
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  cursor: pointer;
  border-radius: 4px;
  transition: all 0.2s;
  letter-spacing: 0.02em;
}
.vs-btn:hover {
  background: rgba(255, 255, 255, 0.08);
  color: white;
}
.vs-btn.active {
  background: var(--brand-primary);
  border-color: var(--brand-primary);
  color: white;
}

.view {
  display: none;
}
.view.active {
  display: block;
}

.blog .breadcrumb,
.breadcrumb,
.category .breadcrumb,
.single .breadcrumb {
  padding: 14px 48px;
  background: white;
  border-bottom: 1px solid var(--brand-border);
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 400;
  color: var(--brand-text-subtle);
  margin-bottom: 0;
}
.blog .breadcrumb a,
.breadcrumb a,
.category .breadcrumb a,
.single .breadcrumb a {
  color: var(--brand-primary);
  text-decoration: none;
  font-weight: 400;
}
.blog .breadcrumb a:hover,
.breadcrumb a:hover,
.category .breadcrumb a:hover,
.single .breadcrumb a:hover {
  text-decoration: underline;
}
.blog .breadcrumb .sep,
.breadcrumb .sep,
.category .breadcrumb .sep,
.single .breadcrumb .sep {
  color: var(--brand-text-muted);
  font-size: 11px;
}

.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 48px;
}

.section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 40px;
}

.section-link {
  font-size: 14px;
  font-weight: 600;
  color: var(--brand-primary);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 6px;
  border-bottom: 2px solid transparent;
  transition: border-color 0.2s;
  padding-bottom: 2px;
}
.section-link:hover {
  border-color: var(--brand-primary);
}
.section-link::after {
  content: "→";
  font-size: 16px;
}

.share-row {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}

.share-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--brand-text-subtle);
}

.share-btns {
  display: flex;
  gap: 8px;
}

.share-btn {
  width: 38px;
  height: 38px;
  border-radius: 4px;
  border: 1px solid var(--brand-border);
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 15px;
  transition: all 0.2s;
  color: var(--brand-text-subtle);
}
.share-btn:hover {
  background: var(--brand-primary);
  color: white;
  border-color: var(--brand-primary);
}

.rating-row {
  display: flex;
  align-items: center;
  gap: 12px;
}

.rating-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--brand-text-subtle);
}

.stars {
  display: flex;
  gap: 3px;
}

.star {
  font-size: 18px;
  color: var(--brand-accent);
}
.star.empty {
  color: #ddd;
}

.rating-score {
  font-size: 14px;
  font-weight: 700;
  color: var(--brand-text);
}

.rating-count {
  font-size: 13px;
  color: var(--brand-text-muted);
}

.spec-note {
  background: #fff8e7;
  border: 1px solid #f5dba0;
  border-radius: 6px;
  padding: 16px 20px;
  margin: 0 0 24px;
  font-size: 13px;
  color: #7a5a00;
  line-height: 1.6;
}
.spec-note strong {
  color: #5a3a00;
}

@media (max-width: 991.98px) {
  .footer-right-col .widget-title {
    margin-top: 20px;
  }
}

.article-card {
  background: white;
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid var(--brand-border);
  transition: transform box-shadow;
  cursor: pointer;
}
.article-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(13, 114, 114, 0.12);
}

.card-image {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  display: block;
  background: linear-gradient(135deg, var(--brand-primary) 0%, var(--brand-primary-dark) 100%);
  position: relative;
  overflow: hidden;
}

.card-image-placeholder {
  width: 100%;
  aspect-ratio: 16/9;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  background: linear-gradient(135deg, var(--brand-primary) 0%, var(--brand-primary-dark) 100%);
  color: rgba(255, 255, 255, 0.35);
  position: relative;
  overflow: hidden;
}
.card-image-placeholder::after {
  content: "";
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.card-image-placeholder .img-icon {
  position: relative;
  z-index: 1;
  font-size: 40px;
  opacity: 0.4;
}
.card-image-placeholder.img-abs {
  display: block;
  position: relative;
}
.card-image-placeholder.img-abs img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.card-featured .card-image-placeholder {
  aspect-ratio: 16/10;
}

.card-category-tag {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--brand-accent);
  color: white;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 2px;
  z-index: 1;
}

.article-card .card-body {
  padding: 20px 22px 24px;
}

.card-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}

.card-date {
  font-size: 12px;
  color: var(--brand-text-muted);
  font-weight: 500;
}

.card-cat-label {
  font-size: 11px;
  font-weight: 600;
  color: var(--brand-primary);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.card-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 16px;
  color: var(--brand-text);
  line-height: 1.4;
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}

.card-featured .card-title {
  font-size: 22px;
  line-height: 1.3;
}

.card-excerpt {
  font-size: 14px;
  color: var(--brand-text-subtle);
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.card-read-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 16px;
  font-size: 13px;
  font-weight: 600;
  color: var(--brand-primary);
  text-decoration: none;
}
.card-read-more::after {
  content: "→";
}
.card-read-more:visited {
  color: var(--brand-primary);
}

.home-articles-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 24px;
}
@media (max-width: 1024px) {
  .home-articles-grid {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
  .home-articles-grid .card-featured {
    grid-column: 1/-1;
  }
}
@media (max-width: 768px) {
  .home-articles-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .home-articles-grid .card-featured {
    grid-column: auto;
  }
}
@media (max-width: 480px) {
  .home-articles-grid {
    gap: 12px;
  }
}

.promo-strip {
  background: var(--brand-primary);
  padding: 40px 0;
  margin-top: 0;
}
.promo-strip .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.promo-text h3 {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 700;
  color: white;
  margin-bottom: 6px;
}
.promo-text p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
}

.promo-cta {
  padding: 14px 32px;
  background: var(--brand-accent);
  color: white;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border: none;
  border-radius: 2px;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s;
}
.promo-cta:hover {
  background: var(--brand-accent-light);
}

.featured-card {
  background: white;
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid var(--brand-border);
  cursor: pointer;
  transition: box-shadow 0.2s;
}
.featured-card:hover {
  box-shadow: 0 8px 28px rgba(13, 114, 114, 0.1);
}

.featured-img-wrap {
  width: 100%;
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, var(--brand-primary) 0%, #073d3d 100%);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.featured-img-wrap::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.featured-img-wrap span {
  position: relative;
  font-size: 52px;
  opacity: 0.35;
}

.featured-img-wrap.img-abs {
  position: relative;
  display: block;
}
.featured-img-wrap.img-abs img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.featured-tag {
  position: absolute;
  bottom: 16px;
  left: 16px;
  background: var(--brand-accent);
  color: white;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 2px;
}

.featured-body {
  padding: 24px 28px 28px;
}

.featured-meta {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-bottom: 12px;
}

.featured-date {
  font-size: 13px;
  color: var(--brand-text-muted);
  font-weight: 500;
}

.featured-views {
  font-size: 13px;
  color: var(--brand-text-muted);
}

.featured-title {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 800;
  color: var(--brand-text);
  line-height: 1.3;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}

.featured-excerpt {
  font-size: 14px;
  color: var(--brand-text-subtle);
  line-height: 1.65;
}

.featured-read {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 18px;
  padding: 10px 20px;
  background: var(--brand-primary);
  color: white;
  font-size: 13px;
  font-weight: 600;
  border-radius: 3px;
  text-decoration: none;
  transition: background 0.2s;
}
.featured-read:hover {
  background: var(--brand-primary-dark);
  color: white !important;
}
.featured-read::after {
  content: "→";
}
.featured-read:visited {
  color: white !important;
}

.recent-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.recent-item {
  display: flex;
  gap: 14px;
  padding: 16px;
  background: white;
  border: 1px solid var(--brand-border);
  border-radius: 6px;
  cursor: pointer;
  transition: border-color box-shadow;
}
.recent-item:hover {
  border-color: var(--brand-primary);
  box-shadow: 0 4px 12px rgba(13, 114, 114, 0.08);
}

.recent-thumb {
  width: 76px;
  height: 56px;
  flex-shrink: 0;
  border-radius: 4px;
  background: linear-gradient(135deg, var(--brand-primary) 0%, #073d3d 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  opacity: 0.85;
  overflow: hidden;
}

.recent-info {
  flex: 1;
  min-width: 0;
}

.recent-date {
  font-size: 11px;
  color: var(--brand-text-muted);
  margin-bottom: 5px;
  font-weight: 500;
}

.recent-title,
.recent-title a {
  font-size: 14px;
  font-weight: 600;
  color: var(--brand-text);
  line-height: 1.35;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.recent-cat {
  font-size: 11px;
  color: var(--brand-primary);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 5px;
}

.home-section {
  padding: 72px 0;
  background: var(--brand-bg);
}

.blog-hero {
  background: white;
  padding: 40px 0 0;
  border-bottom: 1px solid var(--brand-border);
  margin-bottom: 40px;
}

.blog-hero-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding-bottom: 0;
}

.blog-hero-sub {
  font-size: 15px;
  color: var(--brand-text-subtle);
  margin-bottom: 28px;
}

.search-bar {
  display: flex;
  align-items: center;
  gap: 0;
  max-width: 520px;
  width: 100%;
  margin-bottom: 32px;
  border: 2px solid var(--brand-border);
  border-radius: 4px;
  overflow: hidden;
  transition: border-color 0.2s;
}
.search-bar:focus-within {
  border-color: var(--brand-primary);
}
.search-bar .search-input {
  flex: 1;
  padding: 12px 18px;
  border: none;
  outline: none;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--brand-text);
  background: white;
  margin-bottom: 0;
}
.search-bar .search-input::placeholder {
  color: var(--brand-text-muted);
}
.search-bar .search-btn {
  padding: 12px 20px;
  background: var(--brand-primary);
  border: none;
  color: white;
  cursor: pointer;
  font-size: 16px;
  transition: background 0.2s;
}
.search-bar .search-btn:hover {
  background: var(--brand-primary-dark);
}

.cat-tabs {
  display: flex;
  gap: 0;
  border-top: 1px solid var(--brand-border);
  width: 100%;
  max-width: 860px;
  overflow-x: auto;
}

.cat-tab {
  padding: 14px 22px;
  font-size: 14px;
  font-weight: 500;
  color: var(--brand-text-subtle);
  cursor: pointer;
  border: none;
  background: transparent;
  white-space: nowrap;
  border-bottom: 3px solid transparent;
  transition: all 0.2s;
  font-family: var(--font-body);
  margin-bottom: -1px;
}
.cat-tab:hover {
  color: var(--brand-primary);
}
.cat-tab.active {
  color: var(--brand-primary);
  border-bottom-color: var(--brand-primary);
  font-weight: 700;
}

.blog-featured-row {
  margin-bottom: 48px;
}

.blog-grid-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.blog-grid-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--brand-text);
}

.article-count {
  font-size: 13px;
  color: var(--brand-text-muted);
}

.articles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}

.articles-grid {
  display: grid;
  gap: 20px;
  margin-bottom: 40px;
}
@media (max-width: 575.98px) {
  .articles-grid {
    grid-template-columns: 1fr;
  }
}
@media (min-width: 576px) and (max-width: 991.98px) {
  .articles-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 992px) {
  .articles-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 40px 0;
}

.page-btn {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--brand-border);
  border-radius: 4px;
  font-size: 13px;
  font-weight: 600;
  color: var(--brand-text);
  cursor: pointer;
  background: white;
  transition: all 0.2s;
}
.page-btn:hover, .page-btn.active {
  background: var(--brand-primary);
  border-color: var(--brand-primary);
  color: white;
}
.page-btn.prev, .page-btn.next {
  font-size: 16px;
}

.article-layout {
  padding: 36px 0 24px;
}

.article-grid {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 40px;
  align-items: start;
}

.article-content-wrap {
  background: white;
  border-radius: 6px;
  border: 1px solid var(--brand-border);
  overflow: hidden;
}

.article-hero-img {
  width: 100%;
  aspect-ratio: 16/7;
  background: linear-gradient(135deg, var(--brand-primary) 0%, #073d3d 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 64px;
  opacity: 0.9;
  position: relative;
  overflow: hidden;
}
.article-hero-img::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.article-hero-img span {
  position: relative;
  z-index: 1;
  opacity: 0.4;
}
.article-hero-img.img-abs {
  position: relative;
  display: block;
}
.article-hero-img.img-abs img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.article-body-wrap {
  padding: 32px 40px 40px;
}

.article-meta-row {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--brand-border);
}
@media (max-width: 575.98px) {
  .article-meta-row {
    flex-wrap: wrap;
    row-gap: 10px;
  }
}

.article-cat-badge {
  padding: 5px 12px;
  background: rgba(13, 114, 114, 0.08);
  color: var(--brand-primary);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 2px;
}

.article-date-meta {
  font-size: 13px;
  color: var(--brand-text-muted);
}

.article-views {
  font-size: 13px;
  color: var(--brand-text-muted);
  display: flex;
  align-items: center;
  gap: 5px;
}

.article-author {
  font-size: 13px;
  color: var(--brand-text-subtle);
}
.article-author a {
  color: var(--brand-primary);
  text-decoration: none;
  font-weight: 600;
}

.article-highlight {
  margin: 28px 0;
  padding: 20px 24px;
  background: rgba(13, 114, 114, 0.06);
  border-left: 4px solid var(--brand-primary);
  border-radius: 0 4px 4px 0;
}
.article-highlight p {
  margin: 0;
  font-size: 15px;
  font-weight: 600;
  color: var(--brand-text);
  line-height: 1.6;
}

.article-footer {
  padding: 24px 40px;
  border-top: 1px solid var(--brand-border);
  background: var(--brand-page-bg);
}

.subscribe-block {
  margin: 24px 40px;
  padding: 28px 32px;
  background: linear-gradient(135deg, var(--brand-primary) 0%, var(--brand-primary-dark) 100%);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
@media (max-width: 575.98px) {
  .subscribe-block {
    margin: 0;
    flex-wrap: wrap;
  }
}
.subscribe-text h4 {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 700;
  color: white;
  margin-bottom: 4px;
}
.subscribe-text p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
}

.subscribe-form {
  display: flex;
  gap: 8px;
  min-width: 320px;
}
.subscribe-form .subscribe-input {
  flex: 1;
  padding: 11px 16px;
  border: none;
  border-radius: 3px;
  font-family: var(--font-body);
  font-size: 14px;
  outline: none;
  margin: 0;
}
.subscribe-form .subscribe-submit {
  padding: 11px 20px;
  background: var(--brand-accent);
  color: white;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 700;
  border: none;
  border-radius: 3px;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s;
}
.subscribe-form .subscribe-submit:hover {
  background: var(--brand-accent-light);
}

.sidebar {
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: sticky;
  top: 70px;
}

.sidebar-block {
  background: white;
  border: 1px solid var(--brand-border);
  border-radius: 6px;
  overflow: hidden;
}
.sidebar-block > p:empty {
  display: none;
}

.sidebar-block-title {
  padding: 16px 20px;
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 700;
  color: var(--brand-text);
  border-bottom: 1px solid var(--brand-border);
  letter-spacing: -0.01em;
}

.top-articles-list {
  padding: 12px 0;
  line-height: 1;
}

.top-article-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 10px 20px;
  cursor: pointer;
  transition: background 0.15s;
}
.top-article-item:hover {
  background: rgba(13, 114, 114, 0.04);
}

.top-num {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 800;
  color: rgba(13, 114, 114, 0.15);
  line-height: 1;
  min-width: 24px;
  margin-top: 2px;
}

.top-article-title a {
  font-size: 13px;
  font-weight: 600;
  color: var(--brand-primary);
  line-height: 1.4;
}

.top-article-date {
  font-size: 11px;
  color: var(--brand-text-muted);
  margin-top: 4px;
}

.cat-list {
  padding: 8px 0;
}

.cat-list-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 20px;
  cursor: pointer;
  transition: background 0.15s;
  border-bottom: 1px solid var(--brand-border);
}
.cat-list-item:last-child {
  border-bottom: none;
}
.cat-list-item:hover {
  background: rgba(13, 114, 114, 0.04);
}

.cat-list-name {
  font-size: 14px;
  color: var(--brand-text);
  font-weight: 500;
}
.cat-list-name:hover {
  color: var(--brand-primary);
}

.cat-count {
  font-size: 11px;
  font-weight: 700;
  color: var(--brand-text-muted);
  background: var(--brand-page-bg);
  padding: 2px 8px;
  border-radius: 10px;
}

.sidebar-cta {
  padding: 24px 20px;
  text-align: center;
  background: linear-gradient(160deg, var(--brand-primary) 0%, var(--brand-primary-dark) 100%);
}
.sidebar-cta h4 {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 700;
  color: white;
  margin-bottom: 8px;
  line-height: 1.3;
}
.sidebar-cta p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 18px;
  line-height: 1.5;
}

.sidebar-cta-btn,
a.sidebar-cta-btn {
  display: block;
  padding: 12px 20px;
  background: var(--brand-accent);
  color: white;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  border-radius: 3px;
  transition: background 0.2s;
  letter-spacing: 0.03em;
}
.sidebar-cta-btn:hover,
a.sidebar-cta-btn:hover {
  background: var(--brand-accent-light);
  color: white !important;
}
.sidebar-cta-btn:visited,
a.sidebar-cta-btn:visited {
  color: white;
}

.single .kk-star-ratings .kksr-muted {
  display: none;
  opacity: 0;
}

.related-section {
  padding: 48px 0;
  border-top: 1px solid var(--brand-border);
  background: white;
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 28px;
}

/*
 * AIDA Oceana — Rank Math FAQ & HowTo Block Styles
 * Установка: Appearance → Customize → Additional CSS → вставить весь файл
 * ---------------------------------------------------------------
 */
/* ═══════════════════════════════════════
   FAQ BLOCK (.rank-math-block)
═══════════════════════════════════════ */
/* Заголовок секции */
.rank-math-block > h2,
.rank-math-block > h3 {
  font-size: 20px;
  font-weight: 700;
  color: #00565d;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 2px solid #00565d;
  display: flex;
  align-items: center;
  gap: 10px;
}

.rank-math-block > h2::before,
.rank-math-block > h3::before {
  content: "";
  display: inline-block;
  width: 4px;
  height: 22px;
  background: #E07818;
  border-radius: 2px;
  flex-shrink: 0;
}

/* Список FAQ */
.rank-math-list {
  list-style: none !important;
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 0 !important;
}

.rank-math-list-item {
  background: #ffffff;
  border: 1px solid #e2e8ef;
  border-radius: 10px;
  overflow: hidden;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.rank-math-list-item:hover {
  border-color: #00565d;
  box-shadow: 0 2px 8px rgba(0, 86, 93, 0.08);
}

/* Вопрос */
.rank-math-question {
  font-size: 15px;
  font-weight: 600;
  color: #1a2332;
  padding: 16px 20px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  transition: color 0.2s, background 0.2s;
}

.rank-math-question:hover {
  color: #00565d;
  background: rgba(0, 86, 93, 0.05);
}

/* Ответ */
.rank-math-answer {
  font-size: 14px;
  color: #4a5568;
  line-height: 1.7;
  padding: 0 20px 16px;
  border-top: 1px solid #e2e8ef;
}

/* ═══════════════════════════════════════
   HOWTO BLOCK (.rank-math-howto-block)
═══════════════════════════════════════ */
/* Заголовок секции */
.rank-math-howto-block > h2,
.rank-math-howto-block > h3,
.wp-block-rank-math-howto-block h2,
.wp-block-rank-math-howto-block h3 {
  font-size: 20px;
  font-weight: 700;
  color: #00565d;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid #00565d;
  display: flex;
  align-items: center;
  gap: 10px;
}

.rank-math-howto-block > h2::before,
.rank-math-howto-block > h3::before,
.wp-block-rank-math-howto-block h2::before,
.wp-block-rank-math-howto-block h3::before {
  content: "";
  display: inline-block;
  width: 4px;
  height: 22px;
  background: #E07818;
  border-radius: 2px;
  flex-shrink: 0;
}

/* Описание */
.rank-math-howto-description {
  font-size: 14px;
  color: #4a5568;
  margin-bottom: 20px;
  line-height: 1.7;
}

/* Список шагов */
.rank-math-steps {
  list-style: none !important;
  padding: 0 !important;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

/* Шаг */
.rank-math-step {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  counter-increment: howto-step;
}

/* Номер шага — через псевдоэлемент */
.rank-math-step::before {
  content: counter(howto-step);
  min-width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(0, 86, 93, 0.07);
  border: 2px solid #00565d;
  color: #00565d;
  font-size: 13px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 4px;
  transition: background 0.25s, color 0.25s;
}

.rank-math-steps {
  counter-reset: howto-step;
}

.rank-math-step:hover::before {
  background: #E07818;
  border-color: #E07818;
  color: white;
}

/* Тело шага */
.rank-math-step-title {
  font-size: 14px;
  font-weight: 700;
  color: #1a2332;
  margin-bottom: 4px;
  transition: color 0.2s;
}

.rank-math-step:hover .rank-math-step-title {
  color: #00565d;
}

.rank-math-step-content {
  font-size: 13.5px;
  color: #4a5568;
  line-height: 1.65;
}