/* ==========================================================
   Kadına Yönelik Blog - Liste + Detay
   2026-09-18
   ========================================================== */

:root {
    --blog-accent: var(--red-color, #8f237d);
    --blog-accent-dark: var(--red-color-dark, #721c64);
    --blog-text: #25222a;
    --blog-muted: #746f78;
    --blog-soft: #fbf7fa;
    --blog-border: #eee7ec;
    --blog-card: #ffffff;
}

/* ---------- Ortak ---------- */
.blog-page,
.blog-detail-page {
    background: #fff;
    color: var(--blog-text);
}

.blog-page *,
.blog-detail-page * {
    box-sizing: border-box;
}

.blog-page .container,
.blog-detail-page .container {
    width: 100%;
}

.blog-primary-link {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: var(--blog-accent);
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    transition: gap .2s ease, color .2s ease;
}

.blog-primary-link:hover {
    gap: 13px;
    color: var(--blog-accent-dark);
}

.blog-section-heading {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 20px;
    margin: 0 0 22px;
}

.blog-section-heading > div > span {
    display: block;
    margin-bottom: 5px;
    color: var(--blog-accent);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .09em;
    text-transform: uppercase;
}

.blog-section-heading h2 {
    margin: 0;
    color: var(--blog-text);
    font-size: clamp(25px, 3vw, 34px);
    line-height: 1.2;
    font-weight: 700;
    letter-spacing: -.035em;
}

/* ==========================================================
   BLOG LİSTE
   ========================================================== */

.blog-page .blog-hero {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 88% 18%, rgba(143, 35, 125, .11), transparent 28%),
        linear-gradient(135deg, #fff 0%, #fbf5f9 52%, #f7eef5 100%);
    border-bottom: 1px solid #f0e9ee;
}

.blog-page .blog-hero::after {
    content: '';
    position: absolute;
    right: -90px;
    bottom: -150px;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    border: 80px solid rgba(143, 35, 125, .035);
    pointer-events: none;
}

.blog-page .blog-hero-inner {
    max-width: 1200px;
    min-height: 330px;
    margin: 0 auto;
    padding: 58px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 36px;
    position: relative;
    z-index: 1;
}

.blog-page .blog-hero-copy {
    max-width: 760px;
}

.blog-page .blog-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 18px;
    padding: 9px 13px;
    border: 1px solid rgba(143, 35, 125, .14);
    border-radius: 999px;
    background: rgba(255,255,255,.72);
    color: var(--blog-accent);
    font-size: 12px;
    line-height: 1;
    font-weight: 700;
    letter-spacing: .04em;
    backdrop-filter: blur(8px);
}

.blog-page .blog-hero-copy h1 {
    margin: 0;
    color: #242027;
    font-size: clamp(38px, 5.2vw, 66px);
    line-height: 1.04;
    font-weight: 700;
    letter-spacing: -.055em;
}

.blog-page .blog-hero-copy p {
    max-width: 680px;
    margin: 20px 0 0;
    color: #706a73;
    font-size: 16px;
    line-height: 1.8;
}

.blog-page .blog-hero-mark {
    width: 172px;
    height: 172px;
    flex: 0 0 172px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border: 1px solid rgba(143, 35, 125, .13);
    border-radius: 50%;
    background: rgba(255,255,255,.72);
    color: var(--blog-accent);
    box-shadow: 0 24px 55px rgba(91, 42, 82, .10);
    backdrop-filter: blur(10px);
}

.blog-page .blog-hero-mark span {
    font-size: 34px;
    line-height: 1;
    font-weight: 700;
    letter-spacing: -.05em;
}

.blog-page .blog-hero-mark i {
    font-size: 14px;
}

.blog-page .blog-content {
    padding: 46px 0 78px;
    background: #fff;
}

.blog-page .blog-shell {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.blog-page .blog-controls {
    margin-bottom: 34px;
}

.blog-page .blog-search-form {
    position: relative;
    display: grid;
    grid-template-columns: 22px 1fr auto;
    align-items: center;
    gap: 10px;
    max-width: 760px;
    min-height: 58px;
    margin: 0 0 18px;
    padding: 6px 7px 6px 18px;
    border: 1px solid #e9e3e8;
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 10px 35px rgba(36, 29, 36, .055);
    transition: border-color .2s ease, box-shadow .2s ease;
}

.blog-page .blog-search-form:focus-within {
    border-color: rgba(143, 35, 125, .36);
    box-shadow: 0 12px 36px rgba(73, 36, 68, .085);
}

.blog-page .blog-search-icon {
    color: #98919a;
    font-size: 14px;
}

.blog-page .blog-search-form input[type="text"] {
    min-width: 0;
    height: 44px;
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
    background: transparent;
    color: #2c2830;
    font: inherit;
    font-size: 14px;
    box-shadow: none;
}

.blog-page .blog-search-form input::placeholder {
    color: #aaa3ab;
}

.blog-page .blog-search-form button {
    height: 44px;
    min-width: 86px;
    padding: 0 18px;
    border: 0;
    border-radius: 13px;
    background: var(--blog-accent);
    color: #fff;
    font: inherit;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    transition: background .2s ease, transform .2s ease;
}

.blog-page .blog-search-form button:hover {
    background: var(--blog-accent-dark);
    transform: translateY(-1px);
}

.blog-page .blog-category-strip {
    display: flex;
    gap: 9px;
    overflow-x: auto;
    padding: 2px 2px 7px;
    scrollbar-width: thin;
}

.blog-page .blog-category-chip {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 40px;
    padding: 0 13px 0 15px;
    border: 1px solid #ebe5ea;
    border-radius: 999px;
    background: #fff;
    color: #57505a;
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    transition: all .2s ease;
}

.blog-page .blog-category-chip small {
    min-width: 23px;
    height: 23px;
    padding: 0 6px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: #f6f1f5;
    color: #8b838c;
    font-size: 10px;
    font-weight: 700;
}

.blog-page .blog-category-chip:hover,
.blog-page .blog-category-chip.active {
    border-color: var(--blog-accent);
    background: var(--blog-accent);
    color: #fff;
}

.blog-page .blog-category-chip:hover small,
.blog-page .blog-category-chip.active small {
    background: rgba(255,255,255,.17);
    color: #fff;
}

.blog-page .blog-filter-summary {
    margin: -4px 0 24px;
    padding: 15px 17px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    border: 1px solid #eee8ed;
    border-radius: 14px;
    background: #fcfafc;
}

.blog-page .blog-filter-summary > div {
    min-width: 0;
}

.blog-page .blog-filter-summary strong,
.blog-page .blog-filter-summary span {
    display: block;
}

.blog-page .blog-filter-summary strong {
    color: #383239;
    font-size: 13px;
}

.blog-page .blog-filter-summary span {
    margin-top: 3px;
    color: #8a828a;
    font-size: 12px;
}

.blog-page .blog-filter-summary a {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: var(--blog-accent);
    text-decoration: none;
    font-size: 12px;
    font-weight: 700;
}

/* Öne çıkan */
.blog-page .blog-featured-card {
    display: grid;
    grid-template-columns: minmax(0, 1.16fr) minmax(360px, .84fr);
    min-height: 460px;
    margin-bottom: 46px;
    overflow: hidden;
    border: 1px solid #ece6eb;
    border-radius: 26px;
    background: #fff;
    box-shadow: 0 18px 55px rgba(48, 35, 46, .075);
}

.blog-page .blog-featured-media {
    position: relative;
    display: block;
    min-height: 0;
    aspect-ratio: 758 / 587;
    overflow: hidden;
    background: #f1edf0;
}

.blog-page .blog-featured-media img {
    width: 100%;
    height: 100%;
    min-height: 0;
    display: block;
    object-fit: contain;
    transition: transform .45s ease;
}

.blog-page .blog-featured-card:hover .blog-featured-media img {
    transform: none;
}

.blog-page .blog-featured-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 17px;
    padding: 8px 12px;
    border: 1px solid rgba(143, 35, 125, .16);
    border-radius: 999px;
    background: rgba(143, 35, 125, .07);
    color: var(--blog-accent);
    font-size: 11px;
    font-weight: 700;
    line-height: 1.3;
}

.blog-page .blog-featured-content {
    padding: 44px 42px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

.blog-card-meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px 14px;
    margin-bottom: 16px;
    color: #8b838d;
    font-size: 11.5px;
    line-height: 1.4;
}

.blog-card-meta span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.blog-card-meta i {
    color: var(--blog-accent);
}

.blog-card-category {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    padding: 0 10px;
    border-radius: 999px;
    background: rgba(143, 35, 125, .09);
    color: var(--blog-accent);
    text-decoration: none;
    font-size: 10.5px;
    font-weight: 700;
    letter-spacing: .025em;
}

.blog-page .blog-featured-content h2 {
    margin: 0 0 16px;
    color: #282329;
    font-size: clamp(29px, 3vw, 42px);
    line-height: 1.14;
    letter-spacing: -.04em;
    font-weight: 700;
}

.blog-page .blog-featured-content h2 a {
    color: inherit;
    text-decoration: none;
}

.blog-page .blog-featured-content h2 a:hover {
    color: var(--blog-accent);
}

.blog-page .blog-featured-content p {
    margin: 0 0 23px;
    color: #706a72;
    font-size: 14px;
    line-height: 1.8;
}

/* Grid kartlar */
.blog-page .blog-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.blog-page .blog-post {
    min-width: 0;
    overflow: hidden;
    border: 1px solid #ede7ec;
    border-radius: 20px;
    background: #fff;
    box-shadow: 0 10px 30px rgba(47, 36, 45, .05);
    transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.blog-page .blog-post:hover {
    transform: translateY(-5px);
    border-color: #e0d5dd;
    box-shadow: 0 18px 42px rgba(47, 36, 45, .09);
}

.blog-page .blog-post-image {
    position: relative;
    display: block;
    width: 100%;
    aspect-ratio: 758 / 587;
    overflow: hidden;
    background: #f3f0f2;
}

.blog-page .blog-post-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform .4s ease;
}

.blog-page .blog-post:hover .blog-post-image img {
    transform: scale(1.035);
}

.blog-page .image-category {
    position: absolute;
    left: 14px;
    bottom: 14px;
    background: rgba(255,255,255,.94);
    box-shadow: 0 6px 20px rgba(0,0,0,.09);
    backdrop-filter: blur(8px);
}

.blog-page .blog-post-content {
    padding: 20px 20px 22px;
}

.blog-page .blog-post-title {
    margin: 0 0 10px;
    font-size: 18px;
    line-height: 1.4;
    font-weight: 700;
    letter-spacing: -.02em;
}

.blog-page .blog-post-title a {
    color: #2d2930;
    text-decoration: none;
}

.blog-page .blog-post-title a:hover {
    color: var(--blog-accent);
}

.blog-page .blog-post-excerpt {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
    min-height: 66px;
    margin: 0 0 18px;
    color: #77717a;
    font-size: 13px;
    line-height: 1.7;
}

.blog-page .blog-post-read-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--blog-accent);
    text-decoration: none;
    font-size: 12.5px;
    font-weight: 700;
}

.blog-page .blog-post-read-more i {
    font-size: 10px;
    transition: transform .2s ease;
}

.blog-page .blog-post-read-more:hover i {
    transform: translateX(4px);
}

.blog-page .blog-empty-state {
    max-width: 690px;
    margin: 30px auto;
    padding: 58px 28px;
    text-align: center;
    border: 1px solid #eee8ed;
    border-radius: 24px;
    background: #fdfbfd;
}

.blog-page .blog-empty-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 22px;
    background: rgba(143,35,125,.09);
    color: var(--blog-accent);
    font-size: 27px;
}

.blog-page .blog-empty-state h2 {
    margin: 0 0 9px;
    color: #302b31;
    font-size: 24px;
}

.blog-page .blog-empty-state p {
    margin: 0 auto 20px;
    max-width: 500px;
    color: #7f7780;
    font-size: 14px;
    line-height: 1.7;
}

.blog-page .blog-empty-button {
    display: inline-flex;
    min-height: 44px;
    padding: 0 18px;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: var(--blog-accent);
    color: #fff;
    text-decoration: none;
    font-size: 13px;
    font-weight: 700;
}

.blog-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 42px;
}

.blog-pagination a {
    min-width: 42px;
    height: 42px;
    padding: 0 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border: 1px solid #e9e3e8;
    border-radius: 12px;
    background: #fff;
    color: #504951;
    text-decoration: none;
    font-size: 12px;
    font-weight: 700;
    transition: all .2s ease;
}

.blog-pagination a.wide {
    padding: 0 16px;
}

.blog-pagination a:hover,
.blog-pagination a.active {
    border-color: var(--blog-accent);
    background: var(--blog-accent);
    color: #fff;
}

/* ==========================================================
   BLOG DETAY
   ========================================================== */

.blog-detail-page .reading-progress {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 3px;
    z-index: 99999;
    background: transparent;
    pointer-events: none;
}

.blog-detail-page .reading-progress span {
    display: block;
    width: 0;
    height: 100%;
    background: var(--blog-accent);
    box-shadow: 0 0 10px rgba(143,35,125,.28);
}

.blog-detail-page .article-hero {
    position: relative;
    overflow: hidden;
    padding: 36px 0 52px;
    background:
        radial-gradient(circle at 12% 20%, rgba(143,35,125,.07), transparent 28%),
        linear-gradient(180deg, #fff 0%, #fcf7fb 100%);
    border-bottom: 1px solid #f0e9ee;
}

.blog-detail-page .article-hero-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.blog-detail-page .article-breadcrumb {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 30px;
    color: #9a929b;
    font-size: 11.5px;
}

.blog-detail-page .article-breadcrumb a {
    color: #817983;
    text-decoration: none;
    transition: color .2s ease;
}

.blog-detail-page .article-breadcrumb a:hover {
    color: var(--blog-accent);
}

.blog-detail-page .article-breadcrumb i {
    font-size: 8px;
    color: #c5bec5;
}

.blog-detail-page .article-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, .9fr) minmax(480px, 1.1fr);
    align-items: center;
    gap: 50px;
}

.blog-detail-page .article-hero-copy {
    padding: 24px 0;
}

.blog-detail-page .article-category-pill {
    display: inline-flex;
    align-items: center;
    min-height: 32px;
    padding: 0 12px;
    border: 1px solid rgba(143,35,125,.13);
    border-radius: 999px;
    background: rgba(143,35,125,.07);
    color: var(--blog-accent);
    text-decoration: none;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .035em;
}

.blog-detail-page .article-hero h1 {
    max-width: 680px;
    margin: 18px 0 14px;
    color: #282329;
    font-size: clamp(37px, 4.3vw, 60px);
    line-height: 1.08;
    font-weight: 700;
    letter-spacing: -.055em;
}

.blog-detail-page .article-lead {
    max-width: 650px;
    margin: 0;
    color: #706a72;
    font-size: 15px;
    line-height: 1.8;
}

.blog-detail-page .article-meta-row {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px 18px;
    margin-top: 22px;
    color: #8a838c;
    font-size: 12px;
}

.blog-detail-page .article-meta-row span {
    display: inline-flex;
    align-items: center;
    gap: 7px;
}

.blog-detail-page .article-meta-row i {
    color: var(--blog-accent);
}

.blog-detail-page .article-hero-image-wrap {
    position: relative;
    min-height: 0;
    aspect-ratio: 758 / 587;
    overflow: hidden;
    border-radius: 28px;
    background: #f1edef;
    box-shadow: 0 24px 60px rgba(41, 31, 39, .12);
}

.blog-detail-page .article-hero-image-wrap::after {
    content: '';
    position: absolute;
    inset: auto 18px 18px auto;
    width: 80px;
    height: 80px;
    border-radius: 24px;
    background: rgba(255,255,255,.18);
    border: 1px solid rgba(255,255,255,.3);
    backdrop-filter: blur(7px);
    pointer-events: none;
}

.blog-detail-page .article-hero-image {
    width: 100%;
    height: 100%;
    min-height: 0;
    display: block;
    object-fit: cover;
}

.blog-detail-page .article-content-area {
    padding: 54px 0 80px;
    background: #fff;
}

.blog-detail-page .article-layout {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 320px;
    gap: 42px;
    align-items: start;
}

.blog-detail-page .article-card {
    min-width: 0;
    padding: 42px 46px;
    border: 1px solid #eee8ed;
    border-radius: 24px;
    background: #fff;
    box-shadow: 0 14px 45px rgba(42, 31, 40, .055);
}

.blog-detail-page .article-body {
    color: #514a53;
    font-size: 16px;
    line-height: 1.9;
    word-break: break-word;
}

.blog-detail-page .article-body > *:first-child {
    margin-top: 0 !important;
}

.blog-detail-page .article-body > *:last-child {
    margin-bottom: 0 !important;
}

.blog-detail-page .article-body p {
    margin: 0 0 22px;
}

.blog-detail-page .article-body h2,
.blog-detail-page .article-body h3,
.blog-detail-page .article-body h4 {
    color: #2e2930;
    line-height: 1.3;
    letter-spacing: -.025em;
    font-weight: 700;
}

.blog-detail-page .article-body h2 {
    margin: 38px 0 15px;
    font-size: 28px;
}

.blog-detail-page .article-body h3 {
    margin: 32px 0 13px;
    font-size: 22px;
}

.blog-detail-page .article-body h4 {
    margin: 28px 0 12px;
    font-size: 18px;
}

.blog-detail-page .article-body a {
    color: var(--blog-accent);
    text-decoration-thickness: 1px;
    text-underline-offset: 3px;
}

.blog-detail-page .article-body img {
    max-width: 100%;
    height: auto;
    margin: 24px 0;
    border-radius: 18px;
}

.blog-detail-page .article-body ul,
.blog-detail-page .article-body ol {
    margin: 18px 0 24px;
    padding-left: 24px;
}

.blog-detail-page .article-body li {
    margin-bottom: 8px;
}

.blog-detail-page .article-body blockquote {
    position: relative;
    margin: 30px 0;
    padding: 24px 26px 24px 28px;
    border: 0;
    border-left: 4px solid var(--blog-accent);
    border-radius: 0 16px 16px 0;
    background: #fbf6fa;
    color: #625a63;
    font-style: italic;
}

.blog-detail-page .article-tags {
    margin-top: 36px;
    padding-top: 24px;
    border-top: 1px solid #eee8ed;
}

.blog-detail-page .article-tags-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
    color: #615961;
    font-size: 12px;
    font-weight: 700;
}

.blog-detail-page .article-tags-label i {
    color: var(--blog-accent);
}

.blog-detail-page .article-tag-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.blog-detail-page .article-tag-list span {
    padding: 8px 11px;
    border: 1px solid #ece6eb;
    border-radius: 999px;
    background: #fdfbfd;
    color: #7d747d;
    font-size: 11px;
}

.blog-detail-page .article-share-box {
    margin-top: 34px;
    padding: 22px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    border: 1px solid rgba(143,35,125,.10);
    border-radius: 18px;
    background: linear-gradient(135deg, #fbf5f9, #fff);
}

.blog-detail-page .article-share-box > div:first-child {
    min-width: 0;
}

.blog-detail-page .article-share-kicker,
.blog-detail-page .article-share-box strong {
    display: block;
}

.blog-detail-page .article-share-kicker {
    margin-bottom: 4px;
    color: #8f858e;
    font-size: 11px;
}

.blog-detail-page .article-share-box strong {
    color: #3a343b;
    font-size: 14px;
}

.blog-detail-page .article-share-actions {
    display: flex;
    gap: 8px;
    flex: 0 0 auto;
}

.blog-detail-page .share-btn {
    min-height: 42px;
    padding: 0 13px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border: 1px solid #e8e1e6;
    border-radius: 11px;
    background: #fff;
    color: #5a535b;
    text-decoration: none;
    font: inherit;
    font-size: 11.5px;
    font-weight: 700;
    cursor: pointer;
    transition: all .2s ease;
}

.blog-detail-page .share-btn.whatsapp:hover {
    border-color: #25d366;
    color: #168d47;
}

.blog-detail-page .share-btn.copy:hover {
    border-color: var(--blog-accent);
    color: var(--blog-accent);
}

.blog-detail-page .article-next-prev {
    margin-top: 34px;
    padding-top: 26px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    border-top: 1px solid #eee8ed;
}

.blog-detail-page .article-nav-item {
    min-width: 0;
    padding: 16px 17px;
    border: 1px solid #ece6eb;
    border-radius: 15px;
    background: #fff;
    color: #39333a;
    text-decoration: none;
    transition: border-color .2s ease, transform .2s ease, background .2s ease;
}

.blog-detail-page .article-nav-item.next {
    text-align: right;
}

.blog-detail-page .article-nav-item:hover {
    border-color: rgba(143,35,125,.33);
    background: #fdfafd;
    transform: translateY(-2px);
}

.blog-detail-page .article-nav-item span,
.blog-detail-page .article-nav-item strong {
    display: block;
}

.blog-detail-page .article-nav-item span {
    margin-bottom: 6px;
    color: var(--blog-accent);
    font-size: 10.5px;
    font-weight: 700;
}

.blog-detail-page .article-nav-item strong {
    overflow: hidden;
    color: #464047;
    font-size: 12px;
    line-height: 1.45;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/* Sidebar */
.blog-detail-page .article-sidebar {
    position: sticky;
    top: 150px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.blog-detail-page .article-sidebar-card {
    padding: 22px;
    border: 1px solid #eee8ed;
    border-radius: 19px;
    background: #fff;
    box-shadow: 0 10px 32px rgba(48, 37, 46, .045);
}

.blog-detail-page .article-about-card {
    background:
        radial-gradient(circle at 100% 0%, rgba(143,35,125,.12), transparent 34%),
        linear-gradient(135deg, #fbf5f9, #fff);
}

.blog-detail-page .sidebar-mini-label {
    display: block;
    margin-bottom: 8px;
    color: var(--blog-accent);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.blog-detail-page .article-about-card h3 {
    margin: 0 0 9px;
    color: #352f36;
    font-size: 22px;
    letter-spacing: -.03em;
}

.blog-detail-page .article-about-card p {
    margin: 0 0 14px;
    color: #766e77;
    font-size: 12.5px;
    line-height: 1.7;
}

.blog-detail-page .article-about-card > a {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: var(--blog-accent);
    text-decoration: none;
    font-size: 11.5px;
    font-weight: 700;
}

.blog-detail-page .article-sidebar-title-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 15px;
}

.blog-detail-page .article-sidebar-title-row h3 {
    margin: 0;
    color: #373138;
    font-size: 16px;
}

.blog-detail-page .article-sidebar-title-row i {
    color: var(--blog-accent);
    font-size: 13px;
}

.blog-detail-page .article-category-list {
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.blog-detail-page .article-category-list a {
    min-height: 39px;
    padding: 0 10px 0 12px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    border-radius: 10px;
    background: #fbfafb;
    color: #625a63;
    text-decoration: none;
    font-size: 11.5px;
    font-weight: 600;
    transition: all .2s ease;
}

.blog-detail-page .article-category-list a small {
    min-width: 24px;
    height: 24px;
    padding: 0 6px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: #f0eaef;
    color: #8a818a;
    font-size: 9.5px;
}

.blog-detail-page .article-category-list a:hover,
.blog-detail-page .article-category-list a.active {
    background: var(--blog-accent);
    color: #fff;
}

.blog-detail-page .article-category-list a:hover small,
.blog-detail-page .article-category-list a.active small {
    background: rgba(255,255,255,.15);
    color: #fff;
}

.blog-detail-page .article-related-mini-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.blog-detail-page .article-related-mini {
    min-width: 0;
    display: grid;
    grid-template-columns: 72px 1fr;
    align-items: center;
    gap: 11px;
    color: inherit;
    text-decoration: none;
}

.blog-detail-page .article-related-mini-image {
    width: 72px;
    height: 66px;
    overflow: hidden;
    border-radius: 11px;
    background: #f0edef;
}

.blog-detail-page .article-related-mini-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform .3s ease;
}

.blog-detail-page .article-related-mini:hover img {
    transform: scale(1.05);
}

.blog-detail-page .article-related-mini > div:last-child {
    min-width: 0;
}

.blog-detail-page .article-related-mini strong,
.blog-detail-page .article-related-mini span {
    display: block;
}

.blog-detail-page .article-related-mini strong {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    color: #4a434b;
    font-size: 11.5px;
    line-height: 1.45;
}

.blog-detail-page .article-related-mini span {
    margin-top: 4px;
    color: #999199;
    font-size: 9.5px;
}

/* Alt ilgili yazılar */
.blog-detail-page .article-related-section {
    margin-top: 62px;
    padding: 58px 0 8px;
    border-top: 1px solid #f0e9ee;
    background: linear-gradient(180deg, #fcf9fb, #fff);
}

.blog-detail-page .article-related-section > .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.blog-detail-page .article-related-heading > a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--blog-accent);
    text-decoration: none;
    font-size: 12px;
    font-weight: 700;
}

.blog-detail-page .article-related-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

.blog-detail-page .article-related-card {
    overflow: hidden;
    border: 1px solid #ece6eb;
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 10px 30px rgba(43, 32, 41, .05);
}

.blog-detail-page .article-related-card-image {
    display: block;
    aspect-ratio: 758 / 587;
    overflow: hidden;
    background: #f0edef;
}

.blog-detail-page .article-related-card-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform .35s ease;
}

.blog-detail-page .article-related-card:hover .article-related-card-image img {
    transform: scale(1.035);
}

.blog-detail-page .article-related-card-body {
    padding: 18px;
}

.blog-detail-page .article-related-card-body > span {
    display: block;
    margin-bottom: 7px;
    color: var(--blog-accent);
    font-size: 9.5px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .07em;
}

.blog-detail-page .article-related-card-body h3 {
    margin: 0 0 13px;
    font-size: 16px;
    line-height: 1.4;
}

.blog-detail-page .article-related-card-body h3 a {
    color: #3d373e;
    text-decoration: none;
}

.blog-detail-page .article-related-card-body h3 a:hover {
    color: var(--blog-accent);
}

.blog-detail-page .article-toast {
    position: fixed;
    left: 50%;
    bottom: 28px;
    z-index: 99999;
    padding: 11px 16px;
    border-radius: 999px;
    background: #2d292e;
    color: #fff;
    font-size: 11.5px;
    font-weight: 700;
    opacity: 0;
    transform: translate(-50%, 14px);
    pointer-events: none;
    transition: opacity .2s ease, transform .2s ease;
    box-shadow: 0 12px 30px rgba(0,0,0,.16);
}

.blog-detail-page .article-toast.show {
    opacity: 1;
    transform: translate(-50%, 0);
}

/* ==========================================================
   RESPONSIVE
   ========================================================== */

@media (max-width: 1050px) {
    .blog-page .blog-featured-card {
        grid-template-columns: 1fr 1fr;
    }

    .blog-page .blog-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .blog-detail-page .article-hero-grid {
        grid-template-columns: 1fr;
        gap: 26px;
    }

    .blog-detail-page .article-hero-copy {
        padding-bottom: 0;
    }

    .blog-detail-page .article-hero-image-wrap,
    .blog-detail-page .article-hero-image {
        min-height: 0;
    }

    .blog-detail-page .article-layout {
        grid-template-columns: 1fr;
    }

    .blog-detail-page .article-sidebar {
        position: static;
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 14px;
    }
}

@media (max-width: 820px) {
    .blog-page .blog-hero-inner {
        min-height: 290px;
        padding-top: 44px;
        padding-bottom: 44px;
    }

    .blog-page .blog-hero-mark {
        width: 132px;
        height: 132px;
        flex-basis: 132px;
    }

    .blog-page .blog-hero-mark span {
        font-size: 27px;
    }

    .blog-page .blog-featured-card {
        grid-template-columns: 1fr;
    }

    .blog-page .blog-featured-media,
    .blog-page .blog-featured-media img {
        min-height: 0;
    }

    .blog-page .blog-featured-content {
        padding: 30px;
    }

    .blog-detail-page .article-card {
        padding: 34px 30px;
    }

    .blog-detail-page .article-sidebar {
        grid-template-columns: 1fr;
    }

    .blog-detail-page .article-related-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .blog-page .blog-hero-inner,
    .blog-page .blog-shell,
    .blog-detail-page .article-hero-inner,
    .blog-detail-page .article-layout,
    .blog-detail-page .article-related-section > .container {
        padding-left: 16px;
        padding-right: 16px;
    }

    .blog-page .blog-hero-inner {
        min-height: auto;
        padding-top: 36px;
        padding-bottom: 38px;
    }

    .blog-page .blog-hero-mark {
        display: none;
    }

    .blog-page .blog-hero-copy h1 {
        font-size: 38px;
    }

    .blog-page .blog-hero-copy p {
        margin-top: 14px;
        font-size: 14px;
        line-height: 1.7;
    }

    .blog-page .blog-content {
        padding: 30px 0 54px;
    }

    .blog-page .blog-search-form {
        grid-template-columns: 18px 1fr auto;
        min-height: 52px;
        padding-left: 14px;
        border-radius: 15px;
    }

    .blog-page .blog-search-form input[type="text"] {
        height: 40px;
    }

    .blog-page .blog-search-form button {
        min-width: 68px;
        height: 40px;
        padding: 0 13px;
    }

    .blog-page .blog-filter-summary {
        align-items: flex-start;
        flex-direction: column;
    }

    .blog-page .blog-featured-card {
        min-height: auto;
        border-radius: 20px;
        margin-bottom: 34px;
    }

    .blog-page .blog-featured-media,
    .blog-page .blog-featured-media img {
        min-height: 0;
    }

    .blog-page .blog-featured-content {
        padding: 23px 20px 25px;
    }

    .blog-page .blog-featured-label {
        margin-bottom: 14px;
    }

    .blog-page .blog-featured-content h2 {
        font-size: 28px;
    }

    .blog-page .blog-grid {
        grid-template-columns: 1fr;
        gap: 17px;
    }

    .blog-page .blog-post {
        border-radius: 17px;
    }

    .blog-page .blog-post-image {
        aspect-ratio: 758 / 587;
    }

    .blog-section-heading {
        align-items: flex-start;
        flex-direction: column;
        gap: 10px;
    }

    .blog-detail-page .article-hero {
        padding: 24px 0 34px;
    }

    .blog-detail-page .article-breadcrumb {
        margin-bottom: 18px;
    }

    .blog-detail-page .article-hero-copy {
        padding-top: 4px;
    }

    .blog-detail-page .article-hero h1 {
        margin-top: 14px;
        font-size: 36px;
    }

    .blog-detail-page .article-hero-image-wrap,
    .blog-detail-page .article-hero-image {
        min-height: 0;
    }

    .blog-detail-page .article-hero-image-wrap {
        border-radius: 20px;
    }

    .blog-detail-page .article-content-area {
        padding: 30px 0 52px;
    }

    .blog-detail-page .article-card {
        padding: 24px 19px;
        border-radius: 19px;
    }

    .blog-detail-page .article-body {
        font-size: 15px;
        line-height: 1.85;
    }

    .blog-detail-page .article-body h2 {
        font-size: 24px;
    }

    .blog-detail-page .article-share-box {
        align-items: flex-start;
        flex-direction: column;
        padding: 18px;
    }

    .blog-detail-page .article-share-actions {
        width: 100%;
    }

    .blog-detail-page .share-btn {
        flex: 1;
    }

    .blog-detail-page .article-next-prev {
        grid-template-columns: 1fr;
    }

    .blog-detail-page .article-nav-item.next {
        text-align: left;
    }

    .blog-detail-page .article-related-section {
        margin-top: 42px;
        padding-top: 40px;
    }

    .blog-detail-page .article-related-grid {
        grid-template-columns: 1fr;
    }
}

/* Anne & Bebek kişisel rehber CTA */
.blog-family-cta{display:grid;grid-template-columns:58px minmax(0,1fr) auto;align-items:center;gap:18px;margin:0 0 24px;padding:18px 20px;border:1px solid rgba(143,35,125,.13);border-radius:20px;background:linear-gradient(135deg,#fff 0%,#fcf4fa 100%);box-shadow:0 10px 28px rgba(55,34,52,.045);text-decoration:none;color:#302931;transition:.2s ease}.blog-family-cta:hover{transform:translateY(-2px);box-shadow:0 16px 36px rgba(86,42,76,.08);border-color:rgba(143,35,125,.24)}.blog-family-cta-icon{width:58px;height:58px;border-radius:18px;display:grid;place-items:center;background:#f4e5f1;color:var(--blog-accent,#8f237d);font-size:24px}.blog-family-cta-copy{min-width:0}.blog-family-cta-copy small{display:block;color:var(--blog-accent,#8f237d);font-size:10px;font-weight:800;text-transform:uppercase;letter-spacing:.1em;margin-bottom:4px}.blog-family-cta-copy strong{display:block;font-size:16px}.blog-family-cta-copy em{display:block;margin-top:5px;color:#8b818b;font-size:11px;line-height:1.55;font-style:normal}.blog-family-cta-action{height:42px;padding:0 16px;border-radius:11px;background:var(--blog-accent,#8f237d);color:#fff;display:inline-flex;align-items:center;gap:8px;font-size:11px;font-weight:800;white-space:nowrap}@media(max-width:700px){.blog-family-cta{grid-template-columns:48px 1fr;padding:16px}.blog-family-cta-icon{width:48px;height:48px;border-radius:15px}.blog-family-cta-action{grid-column:1/-1;width:100%;justify-content:center}.blog-family-cta-copy em{font-size:10px}}

/* ==========================================================
   Blog hero - Anne & Bebek mini rehber kısayolu
   2026-09-20
   ========================================================== */
.blog-page .blog-hero-inner{gap:28px}
.blog-page .blog-hero-copy{max-width:700px;min-width:0;flex:1 1 auto}
.blog-page .blog-hero-actions{display:flex;align-items:center;justify-content:flex-end;gap:16px;flex:0 0 auto}
.blog-page .blog-family-float{position:relative;width:154px;height:154px;flex:0 0 154px;padding:20px 18px;border:1px solid rgba(143,35,125,.14);border-radius:34px;background:linear-gradient(145deg,rgba(255,255,255,.94),rgba(250,237,247,.92));color:#2b252c;text-decoration:none;box-shadow:0 22px 48px rgba(96,48,86,.12);display:flex;flex-direction:column;align-items:flex-start;justify-content:flex-end;overflow:hidden;transition:transform .24s ease,box-shadow .24s ease,border-color .24s ease;backdrop-filter:blur(12px)}
.blog-page .blog-family-float:before{content:"";position:absolute;width:92px;height:92px;border-radius:50%;right:-28px;top:-26px;background:rgba(143,35,125,.07);box-shadow:0 0 0 22px rgba(143,35,125,.028)}
.blog-page .blog-family-float:hover{transform:translateY(-6px) rotate(.4deg);box-shadow:0 30px 58px rgba(96,48,86,.17);border-color:rgba(143,35,125,.25)}
.blog-page .blog-family-float-icon{position:absolute;top:18px;left:18px;width:44px;height:44px;border-radius:15px;display:grid;place-items:center;background:var(--blog-accent,#8f237d);color:#fff;font-size:19px;box-shadow:0 10px 24px rgba(143,35,125,.22)}
.blog-page .blog-family-float small{position:relative;z-index:1;display:block;margin-bottom:7px;color:var(--blog-accent,#8f237d);font-size:10px;font-weight:800;letter-spacing:.07em;text-transform:uppercase}
.blog-page .blog-family-float strong{position:relative;z-index:1;display:block;max-width:112px;font-size:16px;line-height:1.16;letter-spacing:-.025em}
.blog-page .blog-family-float-arrow{position:absolute;right:16px;bottom:15px;width:30px;height:30px;border-radius:50%;display:grid;place-items:center;background:#fff;color:var(--blog-accent,#8f237d);box-shadow:0 7px 16px rgba(78,41,70,.10);font-size:11px;transition:transform .2s ease}
.blog-page .blog-family-float:hover .blog-family-float-arrow{transform:translateX(3px)}

@media(max-width:1050px){
  .blog-page .blog-hero-copy{max-width:620px}
  .blog-page .blog-hero-mark{width:142px;height:142px;flex-basis:142px}
  .blog-page .blog-family-float{width:142px;height:142px;flex-basis:142px;border-radius:30px}
  .blog-page .blog-family-float strong{font-size:15px}
}
@media(max-width:860px){
  .blog-page .blog-hero-inner{align-items:flex-start;gap:22px}
  .blog-page .blog-hero-actions{gap:12px}
  .blog-page .blog-hero-mark{display:none}
  .blog-page .blog-family-float{width:142px;height:142px;flex-basis:142px;margin-top:12px}
}
@media(max-width:640px){
  .blog-page .blog-hero-inner{display:block;padding-top:32px;padding-bottom:30px}
  .blog-page .blog-hero-actions{display:block;margin-top:22px}
  .blog-page .blog-family-float{width:100%;height:auto;min-height:92px;margin:0;padding:17px 58px 17px 72px;border-radius:22px;justify-content:center;box-shadow:0 14px 34px rgba(96,48,86,.10)}
  .blog-page .blog-family-float:before{width:74px;height:74px;right:-18px;top:-25px}
  .blog-page .blog-family-float-icon{top:50%;left:16px;transform:translateY(-50%);width:44px;height:44px;border-radius:14px}
  .blog-page .blog-family-float:hover{transform:translateY(-2px)}
  .blog-page .blog-family-float small{margin-bottom:4px;font-size:9px}
  .blog-page .blog-family-float strong{max-width:none;font-size:15px}
  .blog-page .blog-family-float-arrow{right:16px;bottom:50%;transform:translateY(50%)}
  .blog-page .blog-family-float:hover .blog-family-float-arrow{transform:translate(3px,50%)}
}

/* ==========================================================
   Blog hero - geniş Anne & Bebek rehber paneli
   ========================================================== */
.blog-page .blog-hero-inner{gap:42px}
.blog-page .blog-hero-copy{max-width:660px;min-width:0;flex:1 1 0}
.blog-page .blog-hero-actions{position:relative;flex:0 0 430px;display:flex;align-items:center;justify-content:flex-end;min-width:0}
.blog-page .blog-family-panel{position:relative;display:block;width:100%;min-height:230px;border:1px solid rgba(143,35,125,.14);border-radius:34px;background:linear-gradient(140deg,rgba(255,255,255,.96) 0%,rgba(252,244,250,.97) 55%,rgba(246,229,242,.98) 100%);box-shadow:0 28px 64px rgba(86,44,78,.13);color:#2b252c;text-decoration:none;overflow:visible;transition:transform .24s ease,box-shadow .24s ease,border-color .24s ease}
.blog-page .blog-family-panel:before{content:"";position:absolute;inset:0;border-radius:inherit;overflow:hidden;background:radial-gradient(circle at 92% 18%,rgba(143,35,125,.12),transparent 28%),radial-gradient(circle at 74% 112%,rgba(143,35,125,.08),transparent 33%);pointer-events:none}
.blog-page .blog-family-panel:after{content:"";position:absolute;width:126px;height:126px;border:1px solid rgba(143,35,125,.09);border-radius:50%;right:-38px;bottom:-44px;box-shadow:0 0 0 28px rgba(143,35,125,.025);pointer-events:none}
.blog-page .blog-family-panel:hover{transform:translateY(-5px);border-color:rgba(143,35,125,.24);box-shadow:0 36px 78px rgba(86,44,78,.18)}
.blog-page .blog-family-panel-orb{position:absolute;left:-58px;top:50%;transform:translateY(-50%);z-index:3;width:122px;height:122px;border-radius:50%;display:flex;flex-direction:column;align-items:center;justify-content:center;gap:8px;background:rgba(255,255,255,.96);border:1px solid rgba(143,35,125,.13);box-shadow:0 22px 48px rgba(86,44,78,.13);color:var(--blog-accent,#8f237d);backdrop-filter:blur(10px)}
.blog-page .blog-family-panel-orb span{font-size:25px;line-height:1;font-weight:800;letter-spacing:-.05em}
.blog-page .blog-family-panel-orb i{font-size:12px}
.blog-page .blog-family-panel-main{position:relative;z-index:2;min-height:230px;padding:27px 30px 25px 84px;display:flex;flex-direction:column;align-items:flex-start;justify-content:center}
.blog-page .blog-family-panel-icon{width:46px;height:46px;border-radius:15px;display:grid;place-items:center;background:var(--blog-accent,#8f237d);color:#fff;font-size:19px;box-shadow:0 12px 26px rgba(143,35,125,.22);margin-bottom:16px}
.blog-page .blog-family-panel-main small{display:block;color:var(--blog-accent,#8f237d);font-size:10px;font-weight:800;letter-spacing:.09em;text-transform:uppercase;margin-bottom:5px}
.blog-page .blog-family-panel-main strong{display:block;font-size:25px;line-height:1.08;letter-spacing:-.04em;margin-bottom:10px}
.blog-page .blog-family-panel-main p{max-width:285px;margin:0;color:#786f79;font-size:12px;line-height:1.62}
.blog-page .blog-family-panel-pills{display:flex;flex-wrap:wrap;gap:7px;margin-top:15px}
.blog-page .blog-family-panel-pills span{display:inline-flex;align-items:center;gap:6px;padding:7px 10px;border-radius:999px;background:rgba(255,255,255,.76);border:1px solid rgba(143,35,125,.10);color:#665d67;font-size:9px;font-weight:700}
.blog-page .blog-family-panel-pills i{color:var(--blog-accent,#8f237d)}
.blog-page .blog-family-panel-action{position:absolute;right:22px;bottom:20px;display:inline-flex;align-items:center;gap:8px;color:var(--blog-accent,#8f237d);font-size:10px;font-weight:800;transition:gap .2s ease}
.blog-page .blog-family-panel:hover .blog-family-panel-action{gap:12px}

@media(max-width:1080px){
  .blog-page .blog-hero-inner{gap:30px}
  .blog-page .blog-hero-copy{max-width:590px}
  .blog-page .blog-hero-actions{flex-basis:380px}
  .blog-page .blog-family-panel-main{padding-left:70px;padding-right:24px}
  .blog-page .blog-family-panel-orb{left:-48px;width:104px;height:104px}
  .blog-page .blog-family-panel-orb span{font-size:22px}
}
@media(max-width:900px){
  .blog-page .blog-hero-inner{display:block;padding-top:42px;padding-bottom:38px}
  .blog-page .blog-hero-copy{max-width:760px}
  .blog-page .blog-hero-actions{width:100%;margin-top:28px}
  .blog-page .blog-family-panel{min-height:190px}
  .blog-page .blog-family-panel-main{min-height:190px;padding:24px 76px 24px 88px}
  .blog-page .blog-family-panel-main p{max-width:520px}
  .blog-page .blog-family-panel-orb{left:18px;width:58px;height:58px}
  .blog-page .blog-family-panel-orb span{font-size:14px}
  .blog-page .blog-family-panel-orb i{display:none}
}
@media(max-width:640px){
  .blog-page .blog-hero-inner{padding-top:30px;padding-bottom:28px}
  .blog-page .blog-hero-actions{margin-top:20px}
  .blog-page .blog-family-panel{border-radius:24px;min-height:0;box-shadow:0 18px 40px rgba(86,44,78,.11)}
  .blog-page .blog-family-panel-main{min-height:0;padding:20px 18px 20px 76px}
  .blog-page .blog-family-panel-orb{left:16px;top:22px;transform:none;width:46px;height:46px;border-radius:15px}
  .blog-page .blog-family-panel-orb span{font-size:11px;letter-spacing:-.03em}
  .blog-page .blog-family-panel-icon{display:none}
  .blog-page .blog-family-panel-main small{font-size:9px}
  .blog-page .blog-family-panel-main strong{font-size:20px;margin-bottom:7px}
  .blog-page .blog-family-panel-main p{font-size:11px;line-height:1.55;max-width:none;padding-right:2px}
  .blog-page .blog-family-panel-pills{margin-top:12px;gap:6px}
  .blog-page .blog-family-panel-pills span{padding:6px 8px;font-size:8px}
  .blog-page .blog-family-panel-action{position:static;margin-top:14px;font-size:9px}
}
