/*
Theme Name: Wordpress Violet Sohbet Teması
Theme URI: https://www.sohbettema.com
Author: HizliShell İnternet Hizmetleri
Author URI: https://www.hizlishell.com
Description: Wordpress VioLet Sohbet Teması
Version: 1.0
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: violet
Tags: wordpress violet sohbet teması, violet sohbet teması, wordpress temaları,
*/


    :root {
      --primary: #8B5CF6;
      --primary-light: #A78BFA;
      --primary-dark: #7C3AED;
      --secondary: #EC4899;
      --accent: #3B82F6;
      --accent-light: #60A5FA;
      --warning: #F59E0B;
      --danger: #EF4444;
      --success: #10B981;
      --mint: #14B8A6;
      --sun: #F97316;
      --bg-gradient: linear-gradient(135deg, #F3E8FF 0%, #FDF4FF 50%, #F0F9FF 100%);
      --card-bg: rgba(255, 255, 255, 0.92);
      --card-bg-strong: rgba(255, 255, 255, 0.98);
      --text-primary: #1F1F3D;
      --text-secondary: #5A5A7A;
      --text-light: #8E8EA9;
      --shadow-xs: 0 6px 18px rgba(124, 58, 237, 0.10);
      --shadow: 0 10px 25px rgba(124, 58, 237, 0.15);
      --shadow-lg: 0 20px 50px rgba(124, 58, 237, 0.20);
      --shadow-xl: 0 25px 70px rgba(124, 58, 237, 0.24);
      --radius-sm: 12px;
      --radius: 18px;
      --radius-lg: 28px;
      --transition: 0.28s ease;
    }

    * { box-sizing: border-box; margin: 0; padding: 0; }
    html, body { min-height: 100%; font-family: "Segoe UI", system-ui, -apple-system, sans-serif; }
    html { scroll-behavior: smooth; }

    body {
      background: var(--bg-gradient);
      color: var(--text-primary);
      line-height: 1.6;
      overflow-x: hidden;
      position: relative;
    }

    body::before,
    body::after {
      content: "";
      position: fixed;
      inset: auto;
      width: 320px;
      height: 320px;
      border-radius: 50%;
      filter: blur(70px);
      opacity: 0.28;
      z-index: -1;
      pointer-events: none;
    }

    body::before {
      top: -70px;
      left: -80px;
      background: radial-gradient(circle, rgba(168, 85, 247, 0.55), transparent 65%);
    }

    body::after {
      right: -60px;
      bottom: -90px;
      background: radial-gradient(circle, rgba(59, 130, 246, 0.45), transparent 65%);
    }

    a { text-decoration: none; color: inherit; }
    button, input { font: inherit; }

    .container {
      width: min(1240px, calc(100% - 32px));
      margin: 0 auto;
    }

    .glass-card {
      background: var(--card-bg);
      backdrop-filter: blur(14px);
      border: 1px solid rgba(255, 255, 255, 0.85);
      box-shadow: var(--shadow-lg);
    }

    .pill {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      padding: 8px 14px;
      border-radius: 999px;
      font-size: 0.70rem;
      font-weight: 800;
      color: var(--primary-dark);
      background: rgba(139, 92, 246, 0.09);
      border: 1px solid rgba(139, 92, 246, 0.12);
      white-space: nowrap;
    }

    .section-space { margin-top: 42px; }

    .topbar {
      position: sticky;
      top: 0;
      z-index: 100;
      padding: 14px 0;
      background: rgba(255, 255, 255, 0.72);
      backdrop-filter: blur(16px);
      border-bottom: 1px solid rgba(139, 92, 246, 0.10);
    }

    .topbar-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 18px;
    }

    .brand {
      display: flex;
      align-items: center;
      gap: 12px;
      font-weight: 900;
      font-size: 1.32rem;
      color: var(--primary-dark);
    }

    .logo {
      width: 46px;
      height: 46px;
      border-radius: 16px;
      background: linear-gradient(135deg, var(--primary), var(--secondary));
      display: flex;
      align-items: center;
      justify-content: center;
      color: white;
      font-weight: 900;
      box-shadow: var(--shadow);
      position: relative;
      overflow: hidden;
    }

    .logo::after {
      content: "";
      position: absolute;
      right: -8px;
      bottom: -10px;
      width: 24px;
      height: 24px;
      background: rgba(255,255,255,.22);
      border-radius: 50%;
    }

    .nav {
      display: flex;
      gap: 8px;
      flex-wrap: wrap;
    }

    .nav a {
      padding: 10px 16px;
      border-radius: 14px;
      font-weight: 700;
      color: var(--text-secondary);
      transition: all var(--transition);
	  background: rgb(155 98 10 / 6%);
    }

    .nav a:hover {
      background: rgba(139, 92, 246, 0.10);
      color: var(--primary-dark);
      transform: translateY(-1px);
    }

    .actions {
      display: flex;
      gap: 10px;
      align-items: center;
    }

    .btn {
      padding: 13px 22px;
      border-radius: 14px;
      font-weight: 800;
      border: none;
      cursor: pointer;
      transition: all var(--transition);
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      white-space: nowrap;
    }

    .btn:hover { transform: translateY(-3px); }

    .btn-primary {
      background: linear-gradient(135deg, var(--primary), var(--secondary));
      color: white;
      box-shadow: var(--shadow);
    }

    .btn-primary:hover { box-shadow: var(--shadow-xl); }

    .btn-secondary {
      background: linear-gradient(135deg, #ffffff, #f8f5ff);
      border: 1px solid rgba(139, 92, 246, 0.18);
      color: var(--text-primary);
      box-shadow: var(--shadow-xs);
    }

    .btn-secondary:hover {
      border-color: rgba(139, 92, 246, 0.35);
      background: linear-gradient(135deg, #ffffff, #f3e8ff);
    }

    .btn-accent {
      background: linear-gradient(135deg, var(--accent), var(--mint));
      color: white;
      box-shadow: 0 12px 30px rgba(59, 130, 246, 0.22);
    }

    .btn-accent:hover { box-shadow: 0 20px 40px rgba(59, 130, 246, 0.28); }

    .hamburger {
      display: none;
      width: 46px;
      height: 46px;
      border-radius: 14px;
      border: none;
      background: rgba(139, 92, 246, 0.10);
      font-size: 1.3rem;
      cursor: pointer;
      color: var(--primary);
    }

    .mobile-menu {
      display: none;
      position: absolute;
      top: calc(100% + 8px);
      left: 16px;
      right: 16px;
      background: rgba(255, 255, 255, 0.98);
      backdrop-filter: blur(12px);
      padding: 16px;
      border-radius: 20px;
      border: 1px solid rgba(139, 92, 246, 0.12);
      box-shadow: var(--shadow-lg);
      z-index: 99;
    }

    .mobile-menu.show { display: block; }

    .mobile-menu a {
      display: block;
      padding: 14px;
      border-radius: 14px;
      color: #6b6b6b;
      font-weight: 700;
      margin-bottom: 6px;
      transition: all var(--transition);
	  background-color: antiquewhite;
    }

    .mobile-menu a:hover { background: rgba(139, 92, 246, 0.08); }

    .hero { padding: 52px 0 20px; }

    .hero-grid {
      display: grid;
      grid-template-columns: 1.12fr 0.88fr;
      gap: 24px;
      align-items: stretch;
      margin-bottom: 28px;
    }

    .hero-card,
    .login-card,
    .stat-card,
    .room-card,
    .trending-list,
    .highlights {
      border-radius: var(--radius-lg);
    }

    .hero-card {
      padding: 38px;
      position: relative;
      overflow: hidden;
    }

    .hero-card::before {
      content: "";
      position: absolute;
      inset: 0;
      pointer-events: none;
      background:
        radial-gradient(circle at 100% 0%, rgba(236,72,153,.13), transparent 24%),
        radial-gradient(circle at 0% 100%, rgba(59,130,246,.10), transparent 26%);
    }

    .hero-badges {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      margin-bottom: 18px;
    }

    h1 {
      text-align: center;
      font-size: clamp(2.2rem, 3vw, 3.6rem);
      line-height: 1.04;
      margin-bottom: 16px;
      letter-spacing: -0.04em;
      background: linear-gradient(135deg, var(--primary-dark), var(--secondary), var(--accent));
      -webkit-background-clip: text;
      background-clip: text;
      color: transparent;
    }

    .subtitle {
      color: var(--text-secondary);
      margin-bottom: 26px;
      font-size: 1.06rem;
      max-width: 60ch;
    }

    .features {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 14px;
      margin-bottom: 24px;
    }

    .feature {
      display: flex;
      align-items: center;
      gap: 12px;
      color: var(--text-primary);
      font-weight: 700;
      padding: 14px 16px;
      border-radius: 16px;
      background: rgba(255, 255, 255, 0.72);
      border: 1px solid rgba(139, 92, 246, 0.08);
    }

    .feature-icon {
      width: 30px;
      height: 30px;
      border-radius: 10px;
      background: linear-gradient(135deg, var(--primary), var(--accent));
      display: flex;
      align-items: center;
      justify-content: center;
      color: white;
      font-weight: 900;
      box-shadow: var(--shadow-xs);
      flex: 0 0 30px;
    }

    .hero-actions {
      display: flex;
      gap: 12px;
      flex-wrap: wrap;
      margin-bottom: 24px;
    }

    .fun-strip {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 12px;
      margin-top: 8px;
    }

    .fun-box {
      padding: 16px;
      border-radius: 18px;
      background: linear-gradient(135deg, rgba(139, 92, 246, 0.08), rgba(59, 130, 246, 0.06));
      border: 1px solid rgba(139, 92, 246, 0.08);
    }

    .fun-box .label {
      color: var(--text-light);
      font-size: 0.8rem;
      font-weight: 700;
      margin-bottom: 4px;
    }

    .fun-box .value {
      color: var(--primary-dark);
      font-size: 1.18rem;
      font-weight: 900;
    }

    .stats-bar {
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-top: 28px;
      padding-top: 22px;
      border-top: 1px solid rgba(139, 92, 246, 0.10);
      gap: 16px;
      flex-wrap: wrap;
    }

    .online-users {
      display: flex;
      align-items: center;
      gap: 14px;
      flex-wrap: wrap;
    }

    .user-avatars { display: flex; }

    .avatar {
      width: 40px;
      height: 40px;
      border-radius: 50%;
      overflow: hidden;
      border: 3px solid white;
      margin-left: -10px;
      background: linear-gradient(135deg, var(--primary), var(--accent));
      box-shadow: var(--shadow-xs);
      flex: 0 0 40px;
    }

    .avatar:first-child { margin-left: 0; }

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

    .online-indicator {
      display: flex;
      align-items: center;
      gap: 8px;
      color: var(--success);
      font-weight: 800;
    }

    .online-dot {
      width: 10px;
      height: 10px;
      border-radius: 50%;
      background: var(--success);
      box-shadow: 0 0 0 0 rgba(16, 185, 129, .65);
      animation: pulse 1.7s infinite;
    }

    @keyframes pulse {
      0% { box-shadow: 0 0 0 0 rgba(16, 185, 129, .55); }
      70% { box-shadow: 0 0 0 12px rgba(16, 185, 129, 0); }
      100% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
    }

    .login-card {
      padding: 30px;
      position: relative;
      overflow: hidden;
    }

    .login-card::after {
      content: "";
      position: absolute;
      right: -35px;
      bottom: -35px;
      width: 130px;
      height: 130px;
      background: radial-gradient(circle, rgba(168, 85, 247, 0.18), transparent 68%);
      border-radius: 50%;
      pointer-events: none;
    }

    .login-header {
      display: flex;
      justify-content: space-between;
      align-items: flex-start;
      gap: 12px;
      margin-bottom: 22px;
    }

    .login-title-wrap small {
      display: block;
      color: var(--text-light);
      font-weight: 700;
      margin-top: 4px;
    }

    .login-header h2 {
      color: var(--text-primary);
      font-size: 1.56rem;
      line-height: 1.15;
    }

    .login-icons { display: flex; gap: 10px; }

    .icon-btn {
      width: 52px;
      height: 52px;
      font-size: 24px;
      border-radius: 14px;
      border: none;
      background: linear-gradient(135deg, #8B5CF6, #EC4899);
      color: #fff;
      box-shadow: 0 8px 20px rgba(139,92,246,0.3);
      cursor: pointer;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      transition: all var(--transition);
    }

    .icon-btn:hover { transform: translateY(-2px); }

    .form-group { margin-bottom: 16px; }

    .form-group label {
      display: block;
      margin-bottom: 8px;
      font-weight: 700;
      color: var(--text-primary);
    }

    .input-wrap { position: relative; }

    .input-chip {
      position: absolute;
      right: 12px;
      top: 50%;
      transform: translateY(-50%);
      font-size: 0.78rem;
      font-weight: 800;
      color: var(--primary-dark);
      background: rgba(139, 92, 246, 0.08);
      padding: 5px 8px;
      border-radius: 10px;
    }

    .form-control {
      width: 100%;
      padding: 15px 14px;
      border-radius: 14px;
      border: 1px solid rgba(139, 92, 246, 0.16);
      background: white;
      font-size: 1rem;
      transition: all var(--transition);
      color: var(--text-primary);
    }

    .form-control:focus {
      outline: none;
      border-color: var(--primary);
      box-shadow: 0 0 0 4px rgba(139, 92, 246, 0.10);
    }

    .login-buttons {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 12px;
      margin-bottom: 20px;
    }

    .stats {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 18px;
      margin-bottom: 16px;
    }

    .stat-card {
      padding: 24px;
      text-align: center;
      transition: transform var(--transition), box-shadow var(--transition);
      position: relative;
      overflow: hidden;
    }

    .stat-card::before {
      content: "";
      position: absolute;
      inset: 0;
      pointer-events: none;
      background: linear-gradient(180deg, rgba(255,255,255,.16), rgba(255,255,255,0));
    }

    .stat-card:hover {
      transform: translateY(-6px);
      box-shadow: var(--shadow-xl);
    }

    .stat-icon {
      width: 52px;
      height: 52px;
      margin: 0 auto 14px;
      border-radius: 16px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: white;
      font-size: 1.3rem;
      font-weight: 900;
      box-shadow: var(--shadow);
    }

    .stat-icon.purple { background: linear-gradient(135deg, var(--primary), var(--secondary)); }
    .stat-icon.blue { background: linear-gradient(135deg, var(--accent), var(--mint)); }
    .stat-icon.orange { background: linear-gradient(135deg, var(--warning), var(--secondary)); }
    .stat-icon.green { background: linear-gradient(135deg, var(--success), var(--accent)); }

    .stat-number {
      font-size: 2.2rem;
      font-weight: 900;
      color: var(--primary-dark);
      line-height: 1;
    }

    .stat-label {
      color: var(--text-secondary);
      font-weight: 700;
      margin-top: 10px;
    }

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

    .section-title {
      font-size: 1.9rem;
      color: var(--text-primary);
      line-height: 1.1;
      margin-bottom: 4px;
    }

    .section-subtitle {
      color: var(--text-secondary);
      margin-top: 4px;
    }

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

    .room-card {
      padding: 22px;
      transition: all var(--transition);
      position: relative;
      overflow: hidden;
    }

    .room-card::before {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(180deg, rgba(255,255,255,.20), rgba(255,255,255,0));
      pointer-events: none;
    }

    .room-card:hover {
      transform: translateY(-6px);
      box-shadow: var(--shadow-xl);
    }

    .room-top {
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 10px;
      margin-bottom: 14px;
    }

    .room-header {
      display: flex;
      align-items: center;
      gap: 14px;
      min-width: 0;
    }

    .room-icon {
      width: 54px;
      height: 54px;
      border-radius: 16px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: white;
      font-size: 1.4rem;
      box-shadow: var(--shadow);
      flex: 0 0 54px;
    }

    .room-icon-1 { background: linear-gradient(135deg, var(--primary), var(--secondary)); }
    .room-icon-2 { background: linear-gradient(135deg, var(--accent), var(--primary)); }
    .room-icon-3 { background: linear-gradient(135deg, var(--warning), var(--secondary)); }
    .room-icon-4 { background: linear-gradient(135deg, var(--success), var(--accent)); }
    .room-icon-5 { background: linear-gradient(135deg, var(--mint), var(--primary)); }
    .room-icon-6 { background: linear-gradient(135deg, var(--sun), var(--secondary)); }

    .room-title {
      font-size: 1.15rem;
      margin-bottom: 4px;
      line-height: 1.15;
    }

    .room-meta {
      color: var(--text-secondary);
      font-size: 0.9rem;
    }

    .room-desc {
      color: var(--text-secondary);
      font-size: 0.95rem;
      margin: 14px 0 16px;
    }

    .room-tags {
      display: flex;
      gap: 8px;
      flex-wrap: wrap;
      margin-bottom: 18px;
    }

    .room-actions {
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 10px;
      flex-wrap: wrap;
    }

    .room-live {
      font-size: 0.86rem;
      font-weight: 800;
      color: var(--success);
    }

    .tag {
      padding: 7px 12px;
      border-radius: 999px;
      font-size: 0.78rem;
      font-weight: 800;
    }

    .tag-primary { background: rgba(139, 92, 246, 0.10); color: var(--primary); }
    .tag-accent { background: rgba(59, 130, 246, 0.10); color: var(--accent); }
    .tag-secondary { background: rgba(236, 72, 153, 0.10); color: var(--secondary); }
    .tag-success { background: rgba(16, 185, 129, 0.10); color: var(--success); }

    .content-grid {
      display: grid;
      grid-template-columns: 1.35fr 0.95fr;
      gap: 18px;
      margin-bottom: 20px;
    }

    .trending-list, .highlights { padding: 24px; }

    .trending-item, .highlight-item {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 14px;
      padding: 14px;
      border-radius: 16px;
      margin-bottom: 10px;
      transition: all var(--transition);
    }

    .trending-item:hover, .highlight-item:hover {
      background: rgba(139, 92, 246, 0.05);
      transform: translateX(2px);
    }

    .trending-info, .highlight-info {
      display: flex;
      align-items: center;
      gap: 14px;
      min-width: 0;
    }

    .trending-icon, .highlight-icon {
      width: 52px;
      height: 52px;
      border-radius: 16px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: white;
      flex: 0 0 52px;
      box-shadow: var(--shadow-xs);
    }

    .growth-badge {
      padding: 6px 12px;
      border-radius: 999px;
      font-size: 0.8rem;
      font-weight: 800;
      background: rgba(16, 185, 129, 0.10);
      color: var(--success);
      margin-right: 8px;
    }

    .faq-box {
      background: rgba(139, 92, 246, 0.05);
      border-radius: var(--radius);
      padding: 20px;
      margin-top: 18px;
      border: 1px dashed rgba(139, 92, 246, 0.30);
    }

    .faq-box strong {
      display: block;
      margin-bottom: 8px;
      color: var(--text-primary);
    }

    .cta-box {
      margin-top: 10px;
      border-radius: var(--radius-lg);
      padding: 28px;
      color: white;
      background:
        radial-gradient(circle at top left, rgba(255,255,255,.22), transparent 30%),
        linear-gradient(135deg, var(--primary), var(--secondary), var(--accent));
      box-shadow: var(--shadow-xl);
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 16px;
      flex-wrap: wrap;
    }

    .cta-box h3 {
      font-size: 1.8rem;
      line-height: 1.08;
      margin-bottom: 8px;
    }

    .cta-box p {
      max-width: 680px;
      opacity: 0.95;
    }

    .cta-actions {
      display: flex;
      gap: 12px;
      flex-wrap: wrap;
    }

    .btn-white {
      background: white;
      color: var(--primary-dark);
      box-shadow: var(--shadow);
    }

    .btn-white:hover { box-shadow: var(--shadow-xl); }

    .footer {
      margin-top: 44px;
      background: rgba(255, 255, 255, 0.78);
      backdrop-filter: blur(10px);
      padding: 48px 0 26px;
      border-top: 1px solid rgba(139, 92, 246, 0.10);
	  background-color: #fff8dc;
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 1.5fr repeat(3, 1fr);
      gap: 24px;
      margin-bottom: 28px;
    }

    .footer-col h4 {
      font-size: 1.08rem;
      margin-bottom: 16px;
      color: var(--text-primary);
    }

    .footer-col a {
      display: block;
      padding: 7px 0;
      color: var(--text-secondary);
      transition: all var(--transition);
    }

    .footer-col a:hover {
      color: var(--primary);
      transform: translateX(2px);
    }

    .footer-bottom {
      padding-top: 24px;
      border-top: 1px solid rgba(139, 92, 246, 0.10);
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 16px;
      flex-wrap: wrap;
    }

    .social-links {
      display: flex;
      gap: 12px;
      flex-wrap: wrap;
    }

    .social-link {
      width: 42px;
      height: 42px;
      border-radius: 14px;
      background: rgba(139, 92, 246, 0.10);
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--primary);
      text-decoration: none;
      transition: all var(--transition);
      box-shadow: var(--shadow-xs);
    }

    .social-link:hover {
      background: linear-gradient(135deg, var(--primary), var(--secondary));
      color: white;
      transform: translateY(-3px);
    }

    .desktop-only { display: inline-flex; }

    @media (max-width: 1024px) {
      .hero-grid, .content-grid { grid-template-columns: 1fr; }
      .stats, .rooms-grid, .footer-grid { grid-template-columns: repeat(2, 1fr); }
    }

    @media (max-width: 768px) {
      .hamburger { display: inline-flex; align-items: center; justify-content: center; }
      .nav { display: none; }
      .actions .desktop-only { display: none !important; }

      .hero-grid {
        display: flex;
        flex-direction: column;
      }

      .login-card { order: 1; }
      .hero-card { order: 2; }

      .stats, .rooms-grid, .footer-grid, .features, .login-buttons, .fun-strip {
        grid-template-columns: 1fr;
      }

      .hero-badges {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 10px;
      }

      .pill {
        border-radius: 12px;
        padding: 10px;
        font-size: 0.85rem;
      }

      .hero-actions {
        display: flex;
        flex-direction: row;
        gap: 10px;
      }

      .hero-actions .btn {
        flex: 1;
        justify-content: center;
        padding: 12px;
        font-size: 0.9rem;
      }

      .stats-bar {
        flex-direction: column;
        align-items: flex-start;
      }

      .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
      }

      h1 { font-size: 2.2rem; }
      .section-title { font-size: 1.55rem; }
      .cta-box h3 { font-size: 1.45rem; }
    }
	
	
	
.topbar,
.glass-card,
.mobile-menu,
.footer {
  backdrop-filter: none;
}

body::before,
body::after {
  filter: blur(20px);
  opacity: 0.14;
}

:root {
  --shadow-xs: 0 4px 10px rgba(124, 58, 237, 0.08);
  --shadow: 0 8px 18px rgba(124, 58, 237, 0.10);
  --shadow-lg: 0 12px 24px rgba(124, 58, 237, 0.12);
  --shadow-xl: 0 16px 28px rgba(124, 58, 237, 0.14);
}	




.hs-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center; /* yatayda ortala */
    justify-content: center;
    margin: 30px auto;  /* sayfanın ortasına getirir */
    padding: 0 15px;    /* mobilde kenar boşluğu */
    max-width: 100%;    /* taşmayı önler */
    text-align: center;
}

.hs-baslik {
    font-family: 'Aclonica', sans-serif;
    color: #0073aa;
    margin-bottom: 10px;
    font-size: 22px;
}

.hs-kutusu {
    background-color: #ffffff;
    border-left: 9px solid #527780;
	border-right: 9px solid #527780;
    padding: 15px 20px;
    max-width: 780px;
    width: 100%; /* taşmayı önlemek için %100 genişlik */
    font-size: 16px;
    font-style: italic;
    color: #333;
    box-shadow: 0px 2px 8px rgba(0,0,0,0.05);
    border-radius: 6px;
    line-height: 1.6;
	margin: 0 auto;
}


























/* OUTER WRAPPER */
.latest-posts {
  width: 100%;
  padding: 40px 15px;
  background: #f7f8fa; /* hafif arka plan profesyonel görünüm */
}

/* CONTAINER */
.latest-posts .post-grid {
  max-width: 1200px;
  margin: 0 auto;   /* ortala */
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

/* CARD */
.post-card {
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 6px 25px rgba(0,0,0,0.08);
  display: flex;
  flex-direction: column;
  transition: all .25s ease;
}

.post-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 35px rgba(0,0,0,0.12);
}

/* IMAGE */
.post-image {
  width: 100%;
  height: 210px;
  overflow: hidden;
  background: #eee;
}

.post-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* CONTENT */
.post-content {
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* META */
.post-meta {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: #777;
}

.post-meta .category {
  background: #f0f2f5;
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 11px;
}

/* TITLE */
.post-content h3 {
  margin: 0;
  font-size: 17px;
  line-height: 1.4;
}

.post-content h3 a {
  color: #1a1a1a;
  text-decoration: none;
}

.post-content h3 a:hover {
  color: #0073aa;
}

/* EXCERPT */
.excerpt {
  font-size: 14px;
  color: #555;
  line-height: 1.6;
}

/* PAGINATION CONTAINER */
.pagination {
  max-width: 1200px;
  margin: 30px auto 0;
  text-align: center;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .latest-posts .post-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .latest-posts .post-grid {
    grid-template-columns: 1fr;
  }

  .post-image {
    height: 180px;
  }
}