.lyra-blog-page { font-family: Inter, system-ui, sans-serif; }
.lyra-blog-hero h1 { font-size: clamp(2rem, 5vw, 3rem); font-weight: 700; color: #0057cd; }
.lyra-blog-cat-btn {
    white-space: nowrap;
    padding: 0.5rem 1.5rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 500;
    border: none;
    background: #e6e8ea;
    color: #424655;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
}
.lyra-blog-cat-btn:hover { background: #dae2ff; }
.lyra-blog-cat-btn-active { background: #0057cd; color: #fff; }
.lyra-blog-featured {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    border: 1px solid #c2c6d8;
    border-radius: 0.75rem;
    overflow: hidden;
    background: #fff;
    transition: border-color 0.2s;
    text-decoration: none;
    color: inherit;
}
@media (min-width: 1024px) {
    .lyra-blog-featured { grid-template-columns: 7fr 5fr; }
}
.lyra-blog-featured:hover { border-color: #0057cd; }
.lyra-blog-featured-img { min-height: 280px; object-fit: cover; width: 100%; height: 100%; }
.lyra-blog-card {
    background: #fff;
    border: 1px solid #c2c6d8;
    border-radius: 0.75rem;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
    transition: border-color 0.2s, box-shadow 0.2s;
}
.lyra-blog-card:hover { border-color: #0057cd; box-shadow: 0 4px 20px rgba(0,87,205,0.08); }
.lyra-blog-card-img { aspect-ratio: 16/9; object-fit: cover; width: 100%; }
.lyra-blog-newsletter {
    background: #dae2ff;
    border-radius: 1rem;
    padding: 2rem 3rem;
    position: relative;
    overflow: hidden;
}

.lyra-blog-newsletter form {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 1rem;
    max-width: 42rem;
}

.lyra-blog-newsletter form input[type="email"] {
    flex: 1 1 auto;
    min-width: 0;
    width: 100%;
    box-sizing: border-box;
}

.lyra-blog-newsletter form button {
    flex-shrink: 0;
    white-space: nowrap;
}

@media (min-width: 640px) {
    .lyra-blog-newsletter form {
        flex-direction: row;
        align-items: center;
        max-width: none;
    }
}

/* Detay sayfası */
.lyra-blog-detail { font-family: Inter, system-ui, sans-serif; }
.lyra-blog-breadcrumb a { transition: color 0.2s; }

.lyra-blog-sidebar-newsletter {
    background: #0f172a;
}

.lyra-blog-promo-banner {
    display: block;
    border-radius: 0.75rem;
    overflow: hidden;
    line-height: 0;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.lyra-blog-promo-banner:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(15, 23, 42, 0.18);
}

.lyra-blog-promo-banner img {
    width: 100%;
    height: auto;
    display: block;
}

.lyra-blog-share-btn {
    width: 2rem;
    height: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: none;
    background: transparent;
    cursor: pointer;
    color: #424655;
    transition: background 0.2s;
}
.lyra-blog-share-btn:hover { background: #eceef0; }

.content-rich-text h2 {
    font-family: 'Hanken Grotesk', system-ui, sans-serif;
    font-size: 24px;
    font-weight: 600;
    margin-top: 32px;
    margin-bottom: 16px;
    color: #0f172a;
}
.content-rich-text h3 {
    font-family: 'Hanken Grotesk', system-ui, sans-serif;
    font-size: 20px;
    font-weight: 600;
    margin-top: 24px;
    margin-bottom: 12px;
    color: #0f172a;
}
.content-rich-text p {
    margin-bottom: 16px;
    color: #424655;
    line-height: 1.75;
}
.content-rich-text ul {
    list-style-type: none;
    padding-left: 0;
    margin-bottom: 24px;
}
.content-rich-text li {
    position: relative;
    padding-left: 24px;
    margin-bottom: 8px;
    color: #424655;
}
.content-rich-text li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 10px;
    width: 8px;
    height: 2px;
    background-color: #0057cd;
}
.content-rich-text blockquote,
.content-rich-text .lyra-quote {
    margin: 32px 0;
    border-left: 4px solid #0057cd;
    background: #f2f4f6;
    padding: 24px;
}
.content-rich-text img {
    max-width: 100%;
    height: auto;
    border-radius: 0.5rem;
}
.content-rich-text a { color: #0057cd; }

.lyra-blog-page-skeleton {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 760px;
}

.lyra-blog-page-skeleton-line {
    height: 1rem;
    border-radius: 0.5rem;
    background: linear-gradient(90deg, #eef2f6 0%, #f8fafc 50%, #eef2f6 100%);
    background-size: 200% 100%;
    animation: lyra-blog-skeleton-shimmer 1.2s ease-in-out infinite;
}

.lyra-blog-page-skeleton-line--sm {
    width: 42%;
    height: 0.85rem;
}

.lyra-blog-page-skeleton-line--title {
    width: 88%;
    height: 2.4rem;
}

.lyra-blog-page-skeleton-block {
    margin-top: 1rem;
    min-height: 280px;
    border-radius: 1rem;
    background: linear-gradient(90deg, #eef2f6 0%, #f8fafc 50%, #eef2f6 100%);
    background-size: 200% 100%;
    animation: lyra-blog-skeleton-shimmer 1.2s ease-in-out infinite;
}

@keyframes lyra-blog-skeleton-shimmer {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}
