
/* ══════════════════════════════════════
   BLOG SAYFASI — PREMIUM REDESIGN
══════════════════════════════════════ */

/* ── Blog Hero ── */
.blog-hero {
  position: relative;
  height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.blog-hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('https://images.unsplash.com/photo-1555396273-367ea4eb4db5?w=1600&q=80');
  background-size: cover;
  background-position: center;
  transform: scale(1.06);
  transition: transform 10s ease;
}
.blog-hero:hover .blog-hero-bg { transform: scale(1.1); }
.blog-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(15,30,20,.92) 0%, rgba(26,58,42,.80) 50%, rgba(30,61,74,.88) 100%);
}
.blog-hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    #8b5e1a 8%,
    #c17f3a 20%,
    #e8a85a 35%,
    #f5c97a 50%,
    #e8a85a 65%,
    #c17f3a 80%,
    #8b5e1a 92%,
    transparent 100%
  );
  background-size: 200% 100%;
  animation: gold-wave 3s ease-in-out infinite;
  z-index: 2;
}
.blog-hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 0 24px;
}
.blog-hero-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: #c17f3a;
  margin-bottom: 20px;
}
.blog-hero-label::before,
.blog-hero-label::after {
  content: '';
  width: 32px;
  height: 1px;
  background: #c17f3a;
  opacity: .6;
}
.blog-hero-title {
  font-family: 'Georgia','Times New Roman',serif;
  font-size: clamp(2.4rem, 6vw, 4.2rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 20px;
  text-shadow: 0 4px 32px rgba(0,0,0,.4);
}
.blog-hero-title em {
  font-style: italic;
  color: #e8a85a;
  display: inline;
  font-size: 1em;
}
.blog-hero-breadcrumb {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
  font-size: 13px;
  color: rgba(255,255,255,.55);
  margin-bottom: 32px;
}
.blog-hero-breadcrumb a { color: rgba(255,255,255,.55); transition: color .2s; text-decoration: none; }
.blog-hero-breadcrumb a:hover { color: #c17f3a; }
.blog-hero-breadcrumb i { font-size: 9px; color: #c17f3a; }
.blog-hero-breadcrumb span:last-child { color: rgba(255,255,255,.9); }
.blog-hero-stats {
  display: inline-flex;
  align-items: center;
  background: rgba(255,255,255,.07);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 16px;
  padding: 16px 32px;
}
.blog-hero-stat { text-align: center; padding: 0 28px; }
.blog-hero-stat-num {
  display: block;
  font-family: 'Georgia','Times New Roman',serif;
  font-size: 26px;
  font-weight: 900;
  color: #c17f3a;
  line-height: 1;
}
.blog-hero-stat-lbl {
  display: block;
  font-size: 10px;
  color: rgba(255,255,255,.5);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-top: 4px;
}
.blog-hero-stat-div {
  width: 1px;
  height: 36px;
  background: rgba(255,255,255,.15);
  flex-shrink: 0;
}

/* ── Blog Sayfa Wrapper ── */
.blog-page-v2 {
  background: #f2f5f0;
  padding: 72px 0 96px;
  position: relative;
}
.blog-page-v2::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 320px;
  background: linear-gradient(to bottom, #eef2ee, #f2f5f0);
  pointer-events: none;
}

/* ── Filtre Bandı ── */
.blog-filter-band {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 56px;
  position: relative;
  z-index: 1;
}
.blog-filter-v2 {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 22px;
  border-radius: 50px;
  background: #fff;
  border: 1.5px solid rgba(26,58,42,.1);
  color: #1a3a2a;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .5px;
  cursor: pointer;
  transition: all .28s cubic-bezier(.4,0,.2,1);
  box-shadow: 0 2px 8px rgba(26,58,42,.06);
}
.blog-filter-v2 i { font-size: 11px; color: #c17f3a; transition: transform .25s; }
.blog-filter-v2:hover {
  border-color: #c17f3a;
  color: #c17f3a;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(193,127,58,.15);
}
.blog-filter-v2:hover i { transform: scale(1.2); }
.blog-filter-v2.active {
  background: #1a3a2a;
  color: #fff;
  border-color: #1a3a2a;
  box-shadow: 0 6px 24px rgba(26,58,42,.25);
  transform: translateY(-2px);
}
.blog-filter-v2.active i { color: #c17f3a; }

/* ── Öne Çıkan Kart ── */
.blog-featured-card {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  border-radius: 28px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 8px 48px rgba(26,58,42,.12);
  border: 1px solid rgba(26,58,42,.07);
  margin-bottom: 40px;
  position: relative;
  transition: transform .4s cubic-bezier(.4,0,.2,1), box-shadow .4s;
  text-decoration: none;
  color: inherit;
}
.blog-featured-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 72px rgba(26,58,42,.18);
}
.blog-featured-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, #c17f3a, #e8a85a, #c17f3a);
  z-index: 2;
}
.blog-featured-img {
  position: relative;
  overflow: hidden;
  min-height: 380px;
}
.blog-featured-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .8s cubic-bezier(.4,0,.2,1);
  display: block;
}
.blog-featured-card:hover .blog-featured-img img { transform: scale(1.06); }
.blog-featured-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(15,30,20,.5) 0%, rgba(15,30,20,.1) 60%, transparent 100%);
}
.blog-featured-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.blog-featured-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #c17f3a;
  color: #1a3a2a;
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  box-shadow: 0 4px 16px rgba(193,127,58,.4);
}
.blog-featured-chip i { font-size: 9px; }
.blog-featured-new {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: rgba(255,255,255,.15);
  backdrop-filter: blur(8px);
  color: #fff;
  padding: 5px 12px;
  border-radius: 50px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  border: 1px solid rgba(255,255,255,.25);
}
.blog-featured-new::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #4ade80;
  animation: pulse-dot 1.5s ease-in-out infinite;
  flex-shrink: 0;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: .6; transform: scale(.8); }
}
.blog-featured-body {
  padding: 44px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.blog-featured-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 18px;
  flex-wrap: wrap;
}
.blog-featured-date {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  color: #c17f3a;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}
.blog-featured-date i { font-size: 10px; }
.blog-featured-read {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  color: #5a6b5e;
  font-weight: 600;
}
.blog-featured-read i { font-size: 10px; color: #c17f3a; }
.blog-featured-body h2 {
  font-family: 'Georgia','Times New Roman',serif;
  font-size: clamp(20px, 2.2vw, 28px);
  font-weight: 700;
  color: #1a3a2a;
  line-height: 1.3;
  margin-bottom: 16px;
  transition: color .2s;
}
.blog-featured-card:hover .blog-featured-body h2 { color: #c17f3a; }
.blog-featured-body p {
  font-size: 14.5px;
  color: #5a6b5e;
  line-height: 1.85;
  margin-bottom: 28px;
}
.blog-featured-divider {
  height: 1px;
  background: linear-gradient(90deg, rgba(193,127,58,.3), transparent);
  margin-bottom: 24px;
}
.blog-featured-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.blog-featured-author {
  display: flex;
  align-items: center;
  gap: 10px;
}
.blog-featured-author-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 2px solid #c17f3a;
  flex-shrink: 0;
  background: #1a3a2a;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Georgia','Times New Roman',serif;
  font-size: 16px;
  font-weight: 700;
  color: #c17f3a;
}
.blog-featured-author-name {
  font-size: 12px;
  font-weight: 700;
  color: #1a3a2a;
  line-height: 1.2;
}
.blog-featured-author-role {
  font-size: 10px;
  color: #c17f3a;
  font-weight: 600;
}
.blog-read-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  background: #1a3a2a;
  color: #fff;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .5px;
  transition: all .28s;
  white-space: nowrap;
  flex-shrink: 0;
  text-decoration: none;
}
.blog-read-btn:hover {
  background: #c17f3a;
  color: #1a3a2a;
  transform: translateX(4px);
  box-shadow: 0 8px 24px rgba(193,127,58,.35);
}
.blog-read-btn i { font-size: 11px; transition: transform .25s; }
.blog-read-btn:hover i { transform: translateX(3px); }

/* ── Bölüm Başlığı ── */
.blog-section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 32px;
  gap: 16px;
}
.blog-section-title {
  font-family: 'Georgia','Times New Roman',serif;
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 700;
  color: #1a3a2a;
  display: flex;
  align-items: center;
  gap: 12px;
}
.blog-section-title::before {
  content: '';
  width: 4px;
  height: 24px;
  background: linear-gradient(to bottom, #c17f3a, #e8a85a);
  border-radius: 2px;
  flex-shrink: 0;
}
.blog-section-all {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 700;
  color: #c17f3a;
  letter-spacing: .5px;
  padding: 8px 18px;
  border: 1.5px solid rgba(193,127,58,.3);
  border-radius: 50px;
  transition: all .25s;
  white-space: nowrap;
  text-decoration: none;
}
.blog-section-all:hover {
  background: #c17f3a;
  color: #1a3a2a;
  border-color: #c17f3a;
}
.blog-section-all i { font-size: 10px; }

/* ── Blog Grid ── */
.blog-grid-v2 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  align-items: start;
}

/* ── Blog Kartı ── */
.blog-card-v2 {
  display: flex;
  flex-direction: column;
  border-radius: 22px;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(26,58,42,.07);
  box-shadow: 0 4px 24px rgba(26,58,42,.07);
  transition: transform .35s cubic-bezier(.4,0,.2,1), box-shadow .35s, border-color .35s;
  position: relative;
}
.blog-card-v2:hover {
  transform: translateY(-10px);
  box-shadow: 0 24px 64px rgba(26,58,42,.15);
  border-color: rgba(193,127,58,.2);
}
.blog-card-v2::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, #c17f3a, #e8a85a);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .35s ease;
  z-index: 2;
}
.blog-card-v2:hover::before { transform: scaleX(1); }
.blog-card-v2-img {
  height: 220px;
  overflow: hidden;
  position: relative;
  flex-shrink: 0;
}
.blog-card-v2-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .65s cubic-bezier(.4,0,.2,1);
  display: block;
}
.blog-card-v2:hover .blog-card-v2-img img { transform: scale(1.08); }
.blog-card-v2-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26,58,42,.4) 0%, transparent 55%);
  transition: opacity .35s;
}
.blog-card-v2:hover .blog-card-v2-img::after { opacity: .7; }
.blog-card-v2-chip {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 3;
  background: #c17f3a;
  color: #1a3a2a;
  padding: 5px 14px;
  border-radius: 50px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .5px;
  text-transform: uppercase;
  box-shadow: 0 4px 12px rgba(193,127,58,.4);
}
.blog-card-v2-time {
  position: absolute;
  bottom: 14px;
  right: 14px;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 5px;
  background: rgba(0,0,0,.55);
  backdrop-filter: blur(6px);
  color: #fff;
  padding: 4px 10px;
  border-radius: 50px;
  font-size: 10px;
  font-weight: 600;
}
.blog-card-v2-time i { font-size: 9px; color: #c17f3a; }
.blog-card-v2-body {
  padding: 24px 24px 26px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.blog-card-v2-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}
.blog-card-v2-date {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 10px;
  color: #c17f3a;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}
.blog-card-v2-date i { font-size: 9px; }
.blog-card-v2-body h2 {
  font-family: 'Georgia','Times New Roman',serif;
  font-size: 17px;
  font-weight: 700;
  color: #1a3a2a;
  line-height: 1.4;
  margin-bottom: 10px;
  transition: color .2s;
}
.blog-card-v2-body h2 a { color: inherit; text-decoration: none; }
.blog-card-v2:hover .blog-card-v2-body h2 { color: #c17f3a; }
.blog-card-v2-body p {
  font-size: 13.5px;
  color: #5a6b5e;
  line-height: 1.78;
  margin-bottom: 20px;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.blog-card-v2-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  border-top: 1px solid rgba(26,58,42,.07);
  margin-top: auto;
}
.blog-card-v2-author {
  display: flex;
  align-items: center;
  gap: 8px;
}
.blog-card-v2-author-dot {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #1a3a2a;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  color: #c17f3a;
  font-weight: 700;
  font-family: 'Georgia','Times New Roman',serif;
  flex-shrink: 0;
}
.blog-card-v2-author-name {
  font-size: 11px;
  font-weight: 700;
  color: #1a3a2a;
}
.blog-card-v2-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 800;
  color: #1a3a2a;
  letter-spacing: .5px;
  padding: 8px 16px;
  border-radius: 50px;
  border: 1.5px solid rgba(26,58,42,.15);
  transition: all .25s;
  text-decoration: none;
}
.blog-card-v2-link:hover {
  background: #1a3a2a;
  color: #fff;
  border-color: #1a3a2a;
  gap: 10px;
}
.blog-card-v2-link i { font-size: 10px; transition: transform .2s; }
.blog-card-v2-link:hover i { transform: translateX(3px); }

/* ── Sayfalama ── */
.blog-pag-v2 {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 64px;
  flex-wrap: wrap;
}
.blog-pag-v2-btn {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: #fff;
  border: 1.5px solid rgba(26,58,42,.1);
  color: #1a3a2a;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .25s;
  box-shadow: 0 2px 8px rgba(26,58,42,.06);
}
.blog-pag-v2-btn:hover {
  border-color: #c17f3a;
  color: #c17f3a;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(193,127,58,.15);
}
.blog-pag-v2-btn.active {
  background: #1a3a2a;
  color: #fff;
  border-color: #1a3a2a;
  box-shadow: 0 6px 20px rgba(26,58,42,.25);
}
.blog-pag-v2-dots {
  color: #5a6b5e;
  font-size: 14px;
  padding: 0 4px;
  letter-spacing: 2px;
}
.blog-pag-v2-nav {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: #1a3a2a;
  border: none;
  color: #fff;
  font-size: 13px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .25s;
  box-shadow: 0 4px 16px rgba(26,58,42,.2);
}
.blog-pag-v2-nav:hover {
  background: #c17f3a;
  color: #1a3a2a;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(193,127,58,.35);
}

/* ── Newsletter Bandı ── */
.blog-newsletter {
  background: #1a3a2a;
  border-radius: 28px;
  padding: 56px 48px;
  margin-top: 72px;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.blog-newsletter::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 20% 50%, rgba(193,127,58,.15) 0%, transparent 60%),
              radial-gradient(ellipse at 80% 50%, rgba(193,127,58,.1) 0%, transparent 60%);
  pointer-events: none;
}
.blog-newsletter::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, #c17f3a, #e8a85a, #c17f3a, transparent);
}
.blog-newsletter-inner { position: relative; z-index: 1; }
.blog-newsletter-ico {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(193,127,58,.15);
  border: 2px solid rgba(193,127,58,.3);
  color: #c17f3a;
  font-size: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}
.blog-newsletter h3 {
  font-family: 'Georgia','Times New Roman',serif;
  font-size: clamp(20px, 2.5vw, 28px);
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
}
.blog-newsletter p {
  font-size: 14px;
  color: rgba(255,255,255,.6);
  line-height: 1.7;
  max-width: 440px;
  margin: 0 auto 28px;
}
.blog-newsletter-form {
  display: flex;
  align-items: center;
  gap: 12px;
  max-width: 480px;
  margin: 0 auto;
}
.blog-newsletter-input {
  flex: 1;
  padding: 14px 20px;
  background: rgba(255,255,255,.08);
  border: 1.5px solid rgba(255,255,255,.15);
  border-radius: 50px;
  color: #fff;
  font-size: 14px;
  outline: none;
  transition: border-color .2s, background .2s;
}
.blog-newsletter-input::placeholder { color: rgba(255,255,255,.35); }
.blog-newsletter-input:focus {
  border-color: #c17f3a;
  background: rgba(255,255,255,.12);
}
.blog-newsletter-btn {
  padding: 14px 28px;
  background: #c17f3a;
  color: #1a3a2a;
  border: none;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 800;
  cursor: pointer;
  white-space: nowrap;
  transition: all .25s;
  box-shadow: 0 6px 20px rgba(193,127,58,.35);
}
.blog-newsletter-btn:hover {
  background: #e8a85a;
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(193,127,58,.45);
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .blog-featured-card { grid-template-columns: 1fr; }
  .blog-featured-img { min-height: 280px; }
  .blog-featured-body { padding: 32px 28px; }
  .blog-hero { height: 340px; }
}
@media (max-width: 900px) {
  .blog-grid-v2 { grid-template-columns: repeat(2, 1fr); }
  .blog-hero { height: 320px; }
  .blog-hero-stats { padding: 12px 20px; }
  .blog-hero-stat { padding: 0 18px; }
  .blog-hero-stat-num { font-size: 22px; }
}
@media (max-width: 768px) {
  .blog-hero { height: 280px; }
  .blog-hero-bg { background-attachment: scroll; }
  .blog-newsletter { padding: 40px 24px; border-radius: 20px; }
  .blog-newsletter-form { flex-direction: column; }
  .blog-newsletter-input { width: 100%; }
  .blog-newsletter-btn { width: 100%; }
  .blog-hero-stats { padding: 10px 16px; }
  .blog-hero-stat { padding: 0 12px; }
  .blog-hero-stat-num { font-size: 18px; }
  .blog-hero-stat-lbl { font-size: 9px; }
  .blog-featured-footer { flex-direction: column; align-items: flex-start; }
  .blog-read-btn { width: 100%; justify-content: center; }
}
@media (max-width: 600px) {
  .blog-grid-v2 { grid-template-columns: 1fr; }
  .blog-hero { height: 240px; }
  .blog-hero-stats { display: none; }
  .blog-newsletter { padding: 32px 20px; margin-top: 48px; }
  .blog-section-head { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 480px) {
  .blog-page-v2 { padding: 48px 0 64px; }
  .blog-filter-band { gap: 6px; margin-bottom: 36px; }
  .blog-filter-v2 { padding: 8px 16px; font-size: 11px; }
  .blog-featured-body { padding: 24px 20px; }
  .blog-featured-body h2 { font-size: 18px; }
  .blog-card-v2-body { padding: 18px 18px 20px; }
  .blog-card-v2-body h2 { font-size: 15px; }
  .blog-pag-v2 { margin-top: 40px; }
  .blog-pag-v2-btn, .blog-pag-v2-nav { width: 38px; height: 38px; font-size: 13px; }
}