/*
Theme Name: Web Sitesi Rehberi
Theme URI: https://example.com/website-directory
Author: Sizin Adınız
Author URI: https://example.com
Description: Web sitelerinin kategorilere göre listelenmesi, tanıtılması ve keşfedilmesi için geliştirilmiş profesyonel ve kurumsal WordPress teması. Hızlı, SEO uyumlu, mobil öncelikli tasarım.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.4
Requires PHP: 8.1
License: GPL-2.0+
License URI: http://www.gnu.org/licenses/gpl-2.0.txt
Text Domain: website-directory
Tags: directory, blog, business, custom-colors, custom-menu, custom-logo, featured-images, post-formats, rtl-language-support, sticky-post, threaded-comments, translation-ready
*/

/* ==========================================================================
   CSS Variables - Profesyonel & Kurumsal Renk Paleti
   ========================================================================== */
:root {
    /* Ana Renkler */
    --wd-primary: #1e3a8a;       /* Koyu Lacivert */
    --wd-primary-hover: #1e40af;
    --wd-primary-light: #3b82f6;
    --wd-accent: #0891b2;        /* Camgöbeği vurgu */
    
    /* Nötr Tonlar */
    --wd-bg: #f8fafc;
    --wd-surface: #ffffff;
    --wd-surface-alt: #f1f5f9;
    --wd-border: #e2e8f0;
    --wd-border-strong: #cbd5e1;
    
    /* Metin */
    --wd-text: #0f172a;
    --wd-text-secondary: #475569;
    --wd-text-muted: #64748b;
    
    /* Durum Renkleri */
    --wd-success: #059669;
    --wd-warning: #d97706;
    --wd-danger: #dc2626;
    --wd-info: #0284c7;
    
    /* Gold for ratings */
    --wd-gold: #f59e0b;
    
    /* Layout */
    --wd-radius: 8px;
    --wd-radius-sm: 6px;
    --wd-radius-lg: 12px;
    --wd-container: 1280px;
    --wd-shadow-sm: 0 1px 2px rgba(15, 23, 42, 0.04);
    --wd-shadow: 0 1px 3px rgba(15, 23, 42, 0.08), 0 1px 2px rgba(15, 23, 42, 0.04);
    --wd-shadow-md: 0 4px 6px rgba(15, 23, 42, 0.05), 0 2px 4px rgba(15, 23, 42, 0.06);
    --wd-shadow-lg: 0 10px 15px rgba(15, 23, 42, 0.08), 0 4px 6px rgba(15, 23, 42, 0.05);
    
    --wd-font-sans: 'IBM Plex Sans', 'Source Sans 3', -apple-system, BlinkMacSystemFont, sans-serif;
    --wd-font-display: 'IBM Plex Serif', Georgia, serif;
}

/* ==========================================================================
   Reset & Base
   ========================================================================== */
*, *::before, *::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; }

body {
    font-family: var(--wd-font-sans);
    color: var(--wd-text);
    background: var(--wd-bg);
    line-height: 1.6;
    margin: 0;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
    color: var(--wd-text);
    font-weight: 700;
    line-height: 1.25;
    margin: 0 0 0.5em;
}

h1 { font-size: clamp(2rem, 4vw, 2.75rem); letter-spacing: -0.02em; }
h2 { font-size: clamp(1.5rem, 3vw, 2rem); letter-spacing: -0.01em; }
h3 { font-size: 1.25rem; }
h4 { font-size: 1.125rem; }

a {
    color: var(--wd-primary);
    text-decoration: none;
    transition: color 0.15s ease;
}

a:hover { color: var(--wd-primary-hover); }

img { max-width: 100%; height: auto; display: block; }

button { font-family: inherit; cursor: pointer; }

/* ==========================================================================
   Layout
   ========================================================================== */
.wd-container {
    max-width: var(--wd-container);
    margin: 0 auto;
    padding: 0 24px;
}

.wd-site-content {
    min-height: calc(100vh - 320px);
    padding: 32px 0 64px;
}

/* ==========================================================================
   Header
   ========================================================================== */
.wd-site-header {
    background: var(--wd-surface);
    border-bottom: 1px solid var(--wd-border);
    box-shadow: var(--wd-shadow-sm);
    position: sticky;
    top: 0;
    z-index: 100;
}

.wd-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 0;
    gap: 32px;
}

.wd-logo {
    font-family: var(--wd-font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--wd-text);
    letter-spacing: -0.02em;
    display: flex;
    align-items: center;
    gap: 10px;
}

.wd-logo-icon {
    background: var(--wd-primary);
    color: #fff;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--wd-radius-sm);
    font-size: 18px;
}

.wd-logo a { color: inherit; }

.wd-main-nav {
    display: flex;
    align-items: center;
    gap: 4px;
    flex: 1;
    justify-content: center;
}

.wd-main-nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 4px;
}

.wd-main-nav a {
    padding: 10px 16px;
    color: var(--wd-text-secondary);
    font-weight: 500;
    font-size: 15px;
    border-radius: var(--wd-radius-sm);
    transition: all 0.15s;
    display: inline-block;
}

.wd-main-nav a:hover,
.wd-main-nav .current-menu-item > a {
    background: var(--wd-surface-alt);
    color: var(--wd-primary);
}

.wd-header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.wd-search-btn,
.wd-mobile-toggle {
    background: var(--wd-surface-alt);
    border: 1px solid var(--wd-border);
    width: 40px;
    height: 40px;
    border-radius: var(--wd-radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--wd-text-secondary);
    transition: all 0.15s;
}

.wd-search-btn:hover {
    background: var(--wd-primary);
    color: #fff;
    border-color: var(--wd-primary);
}

.wd-mobile-toggle { display: none; }

.wd-cta-button {
    background: var(--wd-primary);
    color: #ffffff;
    padding: 9px 18px;
    border-radius: var(--wd-radius-sm);
    font-weight: 600;
    font-size: 14px;
    transition: all 0.15s;
    border: none;
}

.wd-cta-button:hover {
    background: var(--wd-primary-hover);
    color: #ffffff;
    transform: translateY(-1px);
}

/* ==========================================================================
   Hero / Search Section
   ========================================================================== */
.wd-hero {
    background: linear-gradient(135deg, #1e3a8a 0%, #1e40af 100%);
    color: #ffffff;
    padding: 80px 0 96px;
    position: relative;
    overflow: hidden;
}

.wd-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(255,255,255,0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255,255,255,0.05) 0%, transparent 50%);
    pointer-events: none;
}

.wd-hero-content {
    text-align: center;
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.wd-hero h1 {
    color: #ffffff;
    margin-bottom: 16px;
    font-family: var(--wd-font-display);
}

.wd-hero-subtitle {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 36px;
    line-height: 1.6;
}

.wd-search-form {
    background: #ffffff;
    border-radius: var(--wd-radius-lg);
    padding: 8px;
    display: flex;
    gap: 8px;
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.15);
    max-width: 720px;
    margin: 0 auto;
}

.wd-search-form input[type="search"],
.wd-search-form input[type="text"] {
    flex: 1;
    border: none;
    padding: 14px 18px;
    font-size: 15px;
    background: transparent;
    color: var(--wd-text);
}

.wd-search-form input:focus { outline: none; }

.wd-search-form select {
    border: none;
    border-left: 1px solid var(--wd-border);
    padding: 0 16px;
    background: transparent;
    color: var(--wd-text-secondary);
    font-size: 14px;
    cursor: pointer;
}

.wd-search-form button {
    background: var(--wd-primary);
    color: #ffffff;
    border: none;
    padding: 14px 28px;
    border-radius: calc(var(--wd-radius-lg) - 4px);
    font-weight: 600;
    font-size: 15px;
    transition: background 0.15s;
}

.wd-search-form button:hover { background: var(--wd-primary-hover); }

.wd-hero-stats {
    display: flex;
    justify-content: center;
    gap: 48px;
    margin-top: 48px;
    flex-wrap: wrap;
}

.wd-hero-stat {
    text-align: center;
}

.wd-hero-stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: #ffffff;
    line-height: 1;
    margin-bottom: 4px;
}

.wd-hero-stat-label {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* ==========================================================================
   Section Headers
   ========================================================================== */
.wd-section {
    padding: 64px 0;
}

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

.wd-section-title {
    margin: 0;
    color: var(--wd-text);
    position: relative;
    padding-left: 18px;
}

.wd-section-title::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    bottom: 8px;
    width: 4px;
    background: var(--wd-primary);
    border-radius: 2px;
}

.wd-section-subtitle {
    color: var(--wd-text-muted);
    font-size: 15px;
    margin: 4px 0 0 18px;
}

.wd-section-link {
    color: var(--wd-primary);
    font-weight: 600;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.wd-section-link:hover { gap: 10px; }

/* ==========================================================================
   Category Cards
   ========================================================================== */
.wd-categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 16px;
}

.wd-category-card {
    background: var(--wd-surface);
    border: 1px solid var(--wd-border);
    padding: 24px 20px;
    border-radius: var(--wd-radius);
    text-align: center;
    transition: all 0.2s;
    text-decoration: none;
    color: var(--wd-text);
}

.wd-category-card:hover {
    border-color: var(--wd-primary);
    transform: translateY(-2px);
    box-shadow: var(--wd-shadow-md);
    color: var(--wd-text);
}

.wd-category-icon {
    width: 48px;
    height: 48px;
    background: var(--wd-surface-alt);
    border-radius: var(--wd-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px;
    color: var(--wd-primary);
    font-size: 22px;
}

.wd-category-card:hover .wd-category-icon {
    background: var(--wd-primary);
    color: #fff;
}

.wd-category-name {
    font-weight: 600;
    font-size: 15px;
    margin-bottom: 4px;
}

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

/* ==========================================================================
   Website Cards
   ========================================================================== */
.wd-websites-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 24px;
}

.wd-website-card {
    background: var(--wd-surface);
    border: 1px solid var(--wd-border);
    border-radius: var(--wd-radius);
    overflow: hidden;
    transition: all 0.2s;
    display: flex;
    flex-direction: column;
    position: relative;
}

.wd-website-card:hover {
    border-color: var(--wd-border-strong);
    transform: translateY(-3px);
    box-shadow: var(--wd-shadow-lg);
}

.wd-card-thumb {
    position: relative;
    aspect-ratio: 16 / 9;
    background: var(--wd-surface-alt);
    overflow: hidden;
}

.wd-card-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s;
}

.wd-website-card:hover .wd-card-thumb img {
    transform: scale(1.05);
}

.wd-card-thumb-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f1f5f9, #e2e8f0);
    color: var(--wd-primary);
    font-size: 32px;
}

.wd-card-badges {
    position: absolute;
    top: 12px;
    left: 12px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    z-index: 2;
}

.wd-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 4px 10px;
    font-size: 11px;
    font-weight: 700;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: #fff;
    background: var(--wd-primary);
    box-shadow: 0 1px 2px rgba(15, 23, 42, 0.2);
}

.wd-badge.editor-choice { background: #7c3aed; }
.wd-badge.new { background: var(--wd-success); }
.wd-badge.sponsored { background: var(--wd-warning); }
.wd-badge.popular { background: #dc2626; }
.wd-badge.featured { background: var(--wd-primary); }

.wd-card-body {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.wd-card-category {
    font-size: 12px;
    color: var(--wd-primary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 8px;
}

.wd-card-title {
    font-size: 18px;
    margin: 0 0 10px;
    color: var(--wd-text);
    line-height: 1.3;
}

.wd-card-title a {
    color: inherit;
    text-decoration: none;
}

.wd-card-excerpt {
    color: var(--wd-text-secondary);
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 16px;
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.wd-card-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 14px;
    padding-bottom: 14px;
    border-bottom: 1px solid var(--wd-border);
    font-size: 13px;
    color: var(--wd-text-muted);
}

.wd-card-clicks {
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.wd-card-actions {
    display: flex;
    gap: 8px;
}

.wd-visit-site,
.wd-card-button {
    flex: 1;
    text-align: center;
    padding: 10px 14px;
    border-radius: var(--wd-radius-sm);
    font-size: 13px;
    font-weight: 600;
    transition: all 0.15s;
    border: none;
    cursor: pointer;
    text-decoration: none;
}

.wd-visit-site {
    background: var(--wd-primary);
    color: #ffffff;
}

.wd-visit-site:hover {
    background: var(--wd-primary-hover);
    color: #ffffff;
}

.wd-card-button {
    background: var(--wd-surface-alt);
    color: var(--wd-text-secondary);
    border: 1px solid var(--wd-border);
}

.wd-card-button:hover {
    background: var(--wd-surface);
    border-color: var(--wd-primary);
    color: var(--wd-primary);
}

.wd-favorite-button {
    background: transparent;
    border: 1px solid var(--wd-border);
    color: var(--wd-text-muted);
    padding: 10px 12px;
    border-radius: var(--wd-radius-sm);
    transition: all 0.15s;
}

.wd-favorite-button.favorited,
.wd-favorite-button:hover {
    color: #ef4444;
    border-color: #ef4444;
}

/* ==========================================================================
   Featured / Editor's Choice Card (Bigger)
   ========================================================================== */
.wd-featured-card {
    background: linear-gradient(135deg, #fafafa 0%, #f1f5f9 100%);
    border: 1px solid var(--wd-border);
    border-radius: var(--wd-radius-lg);
    padding: 32px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    align-items: center;
    margin-bottom: 32px;
    position: relative;
    overflow: hidden;
}

.wd-featured-card::before {
    content: '';
    position: absolute;
    top: 0; right: 0;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(30, 58, 138, 0.06) 0%, transparent 70%);
}

.wd-featured-thumb {
    aspect-ratio: 16 / 10;
    border-radius: var(--wd-radius);
    overflow: hidden;
    background: var(--wd-surface-alt);
    box-shadow: var(--wd-shadow-md);
}

.wd-featured-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.wd-featured-content { position: relative; z-index: 1; }

.wd-featured-label {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #7c3aed;
    color: #fff;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 16px;
}

.wd-featured-title {
    font-size: 1.75rem;
    margin: 0 0 12px;
    font-family: var(--wd-font-display);
}

.wd-editor-note {
    background: var(--wd-surface);
    padding: 16px 20px;
    border-left: 3px solid #7c3aed;
    border-radius: var(--wd-radius-sm);
    font-style: italic;
    color: var(--wd-text-secondary);
    margin: 16px 0;
    font-size: 14px;
}

/* ==========================================================================
   Single Website Detail Page
   ========================================================================== */
.wd-single-website {
    background: var(--wd-surface);
    border-radius: var(--wd-radius-lg);
    box-shadow: var(--wd-shadow);
    overflow: hidden;
}

.wd-single-header {
    padding: 40px;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    border-bottom: 1px solid var(--wd-border);
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 24px;
    align-items: center;
}

.wd-single-logo {
    width: 96px;
    height: 96px;
    border-radius: var(--wd-radius);
    background: #fff;
    border: 1px solid var(--wd-border);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wd-single-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 8px;
}

.wd-single-info h1 {
    margin: 0 0 8px;
    font-family: var(--wd-font-display);
}

.wd-single-meta {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    color: var(--wd-text-muted);
    font-size: 14px;
}

.wd-single-meta > span {
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.wd-single-actions {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.wd-single-actions .wd-visit-site {
    padding: 14px 28px;
    font-size: 15px;
}

.wd-single-body {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 40px;
    padding: 40px;
}

.wd-single-main h2 {
    color: var(--wd-text);
    margin-top: 32px;
    margin-bottom: 16px;
    font-size: 1.25rem;
    padding-left: 12px;
    border-left: 3px solid var(--wd-primary);
}

.wd-single-main h2:first-child { margin-top: 0; }

.wd-single-screenshot {
    border-radius: var(--wd-radius);
    overflow: hidden;
    margin: 20px 0;
    border: 1px solid var(--wd-border);
}

.wd-single-content {
    color: var(--wd-text-secondary);
    line-height: 1.75;
}

.wd-single-sidebar {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.wd-sidebar-block {
    background: var(--wd-surface-alt);
    border: 1px solid var(--wd-border);
    border-radius: var(--wd-radius);
    padding: 20px;
}

.wd-sidebar-block h3 {
    margin: 0 0 14px;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--wd-text-muted);
    padding-bottom: 12px;
    border-bottom: 1px solid var(--wd-border);
}

.wd-info-list { list-style: none; padding: 0; margin: 0; }

.wd-info-list li {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    font-size: 14px;
    border-bottom: 1px dashed var(--wd-border);
}

.wd-info-list li:last-child { border-bottom: none; }

.wd-info-list .label {
    color: var(--wd-text-muted);
    font-weight: 500;
}

.wd-info-list .value {
    color: var(--wd-text);
    font-weight: 600;
}

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

.wd-social-link {
    width: 36px;
    height: 36px;
    background: var(--wd-surface);
    border: 1px solid var(--wd-border);
    border-radius: var(--wd-radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--wd-text-secondary);
    transition: all 0.15s;
}

.wd-social-link:hover {
    background: var(--wd-primary);
    color: #fff;
    border-color: var(--wd-primary);
}

/* ==========================================================================
   Filters & Sorting
   ========================================================================== */
.wd-filters-bar {
    background: var(--wd-surface);
    border: 1px solid var(--wd-border);
    border-radius: var(--wd-radius);
    padding: 16px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
    gap: 16px;
    flex-wrap: wrap;
}

.wd-filters {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    align-items: center;
}

.wd-filters select {
    border: 1px solid var(--wd-border);
    border-radius: var(--wd-radius-sm);
    padding: 8px 14px;
    background: var(--wd-surface);
    color: var(--wd-text);
    font-size: 14px;
    cursor: pointer;
}

.wd-view-switcher {
    display: flex;
    gap: 4px;
    background: var(--wd-surface-alt);
    padding: 4px;
    border-radius: var(--wd-radius-sm);
}

.wd-view-switcher button {
    background: transparent;
    border: none;
    padding: 6px 10px;
    border-radius: 4px;
    color: var(--wd-text-muted);
    transition: all 0.15s;
}

.wd-view-switcher button.active {
    background: var(--wd-surface);
    color: var(--wd-primary);
    box-shadow: var(--wd-shadow-sm);
}

/* List view */
.wd-websites-grid.view-list {
    grid-template-columns: 1fr;
}

.view-list .wd-website-card {
    flex-direction: row;
}

.view-list .wd-card-thumb {
    width: 280px;
    flex-shrink: 0;
    aspect-ratio: auto;
}

/* ==========================================================================
   Footer
   ========================================================================== */
.wd-site-footer {
    background: #0f172a;
    color: #cbd5e1;
    padding: 64px 0 0;
    margin-top: 80px;
}

.wd-footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 48px;
}

.wd-footer-col h4 {
    color: #ffffff;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 16px;
}

.wd-footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.wd-footer-col li { margin-bottom: 10px; }

.wd-footer-col a {
    color: #94a3b8;
    font-size: 14px;
    transition: color 0.15s;
}

.wd-footer-col a:hover { color: #ffffff; }

.wd-footer-about p {
    color: #94a3b8;
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 16px;
}

.wd-footer-bottom {
    border-top: 1px solid #1e293b;
    padding: 24px 0;
    text-align: center;
    font-size: 13px;
    color: #64748b;
}

/* ==========================================================================
   Comments
   ========================================================================== */
.comments-area {
    margin-top: 40px;
    padding-top: 40px;
    border-top: 1px solid var(--wd-border);
}

.comment-list {
    list-style: none;
    padding: 0;
}

.comment-list li {
    background: var(--wd-surface-alt);
    padding: 20px;
    border-radius: var(--wd-radius);
    margin-bottom: 16px;
}

.comment-author {
    font-weight: 600;
    color: var(--wd-text);
    margin-bottom: 4px;
}

.comment-meta {
    color: var(--wd-text-muted);
    font-size: 13px;
    margin-bottom: 12px;
}

/* ==========================================================================
   Pagination
   ========================================================================== */
.wd-pagination {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 40px;
}

.wd-pagination .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 12px;
    background: var(--wd-surface);
    border: 1px solid var(--wd-border);
    border-radius: var(--wd-radius-sm);
    color: var(--wd-text);
    font-weight: 500;
    text-decoration: none;
}

.wd-pagination .page-numbers.current,
.wd-pagination .page-numbers:hover {
    background: var(--wd-primary);
    border-color: var(--wd-primary);
    color: #fff;
}

/* ==========================================================================
   Utility Classes
   ========================================================================== */
.wd-text-muted { color: var(--wd-text-muted); }
.wd-text-center { text-align: center; }
.wd-mt-4 { margin-top: 32px; }
.wd-mb-4 { margin-bottom: 32px; }

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 1024px) {
    .wd-footer-grid { grid-template-columns: 1fr 1fr; }
    .wd-single-body { grid-template-columns: 1fr; }
    .wd-featured-card { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .wd-main-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #fff;
        flex-direction: column;
        padding: 16px;
        box-shadow: var(--wd-shadow-lg);
        border-bottom: 1px solid var(--wd-border);
    }
    
    .wd-main-nav.mobile-open { display: flex; }
    
    .wd-main-nav ul {
        flex-direction: column;
        width: 100%;
    }
    
    .wd-mobile-toggle { display: flex; }
    
    .wd-hero { padding: 48px 0 64px; }
    .wd-hero-stats { gap: 24px; }
    
    .wd-search-form {
        flex-direction: column;
        padding: 12px;
    }
    
    .wd-search-form select {
        border-left: none;
        border-top: 1px solid var(--wd-border);
        padding: 12px;
    }
    
    .wd-section { padding: 40px 0; }
    
    .wd-section-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .wd-single-header {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 24px;
    }
    
    .wd-single-logo { margin: 0 auto; }
    
    .wd-single-body { padding: 24px; }
    
    .wd-footer-grid { grid-template-columns: 1fr; }
    
    .view-list .wd-website-card {
        flex-direction: column;
    }
    
    .view-list .wd-card-thumb {
        width: 100%;
        aspect-ratio: 16/9;
    }
}
