.page--haber-detay {
    display: block;
}

.page--haber-detay__breadcrumb {
    display: block;
    margin-bottom: 0;
}

.page--haber-detay__topbar {
    margin-bottom: var(--space-sm);
}

.page--haber-detay__topbar .page--haber-detay__breadcrumb {
    margin-bottom: 0;
}

.news-article__meta-wrap {
    margin: 0 0 var(--space-sm) 0;
}

.news-article__meta-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem 1rem;
    margin-bottom: 0.375rem;
}

.news-article__meta-row .share-actions {
    flex-shrink: 0;
    margin-left: auto;
}

.news-article__meta-extra {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.375rem 0.5rem;
    margin: 0;
    padding: 0;
    color: var(--color-text-muted);
    font-size: var(--text-xs);
    line-height: 1.4;
}

.share-actions {
    display: inline-flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-end;
    gap: 0.375rem;
    min-width: 0;
}

.share-actions__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.25rem;
    height: 2.25rem;
    padding: 0;
    font: inherit;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0;
    color: var(--color-text);
    background: transparent;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
    text-decoration: none;
    cursor: pointer;
    transition:
        background-color var(--transition),
        border-color var(--transition),
        color var(--transition);
}

.share-actions__btn:hover {
    color: var(--color-accent);
    border-color: rgba(0, 0, 0, 0.18);
    background-color: rgba(0, 0, 0, 0.03);
    text-decoration: none;
}

.share-actions__icon {
    display: block;
    width: 1.125rem;
    height: 1.125rem;
}

.news-article__meta-row .share-actions__btn {
    width: 1.625rem;
    height: 1.625rem;
}

.news-article__meta-row .share-actions__icon {
    width: 0.8125rem;
    height: 0.8125rem;
}

.share-actions__btn:focus-visible {
    outline: none;
    box-shadow: var(--focus-ring);
}

.share-actions__status {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.25rem;
    margin: 0;
    padding: 0.625rem 0;
    list-style: none;
    color: var(--color-text-muted);
    font-size: var(--text-sm);
    line-height: 1.35;
    border: 0;
    border-radius: 0;
}

.page--haber-detay .breadcrumb {
    padding: 0.45rem 0;
}

.breadcrumb__item {
    display: inline-flex;
    align-items: center;
    min-width: 0;
    gap: 0.375rem;
}

.breadcrumb__item:not(:last-child)::after {
    content: "›";
    display: inline-block;
    opacity: 0.65;
    transform: translateY(-0.02em);
}

.breadcrumb__link {
    display: inline-flex;
    align-items: center;
    max-width: 100%;
    padding: 0.25rem 0.375rem;
    color: inherit;
    text-decoration: none;
    border-radius: 0.375rem;
    transition: background-color var(--transition), color var(--transition);
}

.breadcrumb__link:hover {
    color: var(--color-accent);
    background-color: rgba(0, 0, 0, 0.035);
    text-decoration: none;
}

.breadcrumb__link:focus-visible {
    outline: none;
    box-shadow: var(--focus-ring);
}

.page--haber-detay .breadcrumb__link {
    padding: 0.2rem 0.25rem;
}

.breadcrumb__item[aria-current="page"] {
    color: var(--color-text);
    font-weight: 700;
}

.breadcrumb__item[aria-current="page"]::after {
    content: none;
}

@media (min-width: 768px) {
    .breadcrumb {
        padding: 0.75rem 0;
    }

    .page--haber-detay .breadcrumb {
        padding: 0.5rem 0;
    }
}

@media (max-width: 480px) {
    .news-article__meta-wrap {
        margin-bottom: 0.75rem;
    }

    .tag {
        padding: 0.1875rem 0.4375rem;
    }

    .news-article__meta-extra .news-article__meta-sep {
        display: none;
    }
}

.page--haber-detay__grid {
    display: grid;
    gap: var(--space-xl);
}

.page--haber-detay__main {
    display: grid;
    gap: var(--space-xl);
    min-width: 0;
}

.news-article {
    display: grid;
    gap: var(--space-lg);
}

.news-article__header {
    display: grid;
    gap: 0.75rem;
    padding-bottom: var(--space-md);
    border-bottom: 1px solid var(--color-border);
}

.news-article__meta-sep {
    opacity: 0.7;
}

.tag {
    display: inline-flex;
    align-items: center;
    padding: 0.25rem 0.5rem;
    font-size: var(--text-xs);
    font-weight: 600;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    color: var(--color-secondary);
    background: rgba(233, 69, 96, 0.08);
    border-radius: 0;
    text-decoration: none;
}

.tag:hover {
    text-decoration: underline;
}

.news-article__title {
    margin: 0 0 0.5rem 0;
    font-size: var(--text-4xl);
    line-height: 1.1;
    font-family: var(--font-heading);
}

.news-article__lead {
    margin: 0 0 var(--space-lg) 0;
    color: var(--color-text-muted);
    font-size: var(--text-lg);
    line-height: 1.6;
    max-width: 70ch;
}

.news-article__media {
    margin: 0;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--color-bg-alt);
    border: 1px solid var(--color-border);
}

.news-article__image {
    display: block;
    width: 100%;
    height: auto;
}

.news-article__byline {
    margin: 0;
    font-size: var(--text-sm);
    color: var(--color-text-muted);
}

.news-article__byline-label {
    font-weight: 600;
    color: var(--color-text);
}

.news-article__author {
    color: inherit;
    text-decoration: underline;
}

.news-article__byline-sep {
    margin: 0 0.5rem;
    opacity: 0.7;
}

.news-article__content {
    display: grid;
    gap: var(--space-md);
    max-width: 75ch;
}

.news-article__content p {
    margin: 0;
    font-size: var(--text-base);
    line-height: 1.85;
}

.news-article__footer {
    display: grid;
    gap: var(--space-md);
    padding-top: var(--space-md);
}

.news-article__facts {
    display: grid;
    gap: 0.75rem;
    margin: 0;
}

.news-article__fact {
    display: grid;
    grid-template-columns: 7rem 1fr;
    gap: 0.75rem;
}

.news-article__fact--source {
    padding: 0.75rem;
    background: var(--color-bg-alt);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
}

.news-article__fact-key {
    font-size: var(--text-sm);
    color: var(--color-text-muted);
}

.news-article__fact-val {
    margin: 0;
    font-size: var(--text-sm);
}

.page--article .article__meta {
    margin: 0;
    color: var(--color-text-muted);
    font-size: var(--text-sm);
    line-height: 1.5;
}

.page--article .article__meta-views {
    font-variant-numeric: tabular-nums;
}

.page--article .article__source {
    margin-top: var(--space-lg);
}

.page--article .article__source a {
    color: inherit;
    text-decoration: underline;
}

.page--article .article__source a:focus-visible {
    outline: none;
    box-shadow: var(--focus-ring);
}

.page--article .article__media {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 15 / 7;
    object-fit: cover;
}

.page--article .article__embed {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background-color: #000;
}

.page--article .article__embed iframe {
    display: block;
    width: 100%;
    height: 100%;
    border: 0;
}

.news-article__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.page--haber-detay__aside {
    display: grid;
    gap: var(--space-lg);
}

.comments {
    margin-top: 0;
    padding-top: var(--space-lg);
    border-top: 1px solid var(--color-border);
}

.comments__title {
    margin: 0 0 var(--space-sm) 0;
    font-size: var(--text-xl);
}

.comments__empty {
    display: grid;
    gap: var(--space-sm);
    padding: var(--space-lg);
    background: var(--color-bg-alt);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    text-align: center;
}

.comments__empty-text {
    margin: 0;
    color: var(--color-text-muted);
    line-height: 1.6;
}

.comments__flash {
    margin: 0 0 var(--space-sm) 0;
    padding: 0.75rem 1rem;
    font-size: var(--text-sm);
    color: var(--color-text);
    background: rgba(34, 197, 94, 0.12);
    border: 1px solid rgba(34, 197, 94, 0.35);
    border-radius: var(--radius-md);
}

.comments__form {
    margin-top: var(--space-lg);
    display: grid;
    gap: var(--space-md);
}

.comments__fieldset {
    margin: 0;
    padding: 0;
    border: 0;
    min-width: 0;
}

.comments__legend {
    padding: 0;
    margin: 0 0 var(--space-sm) 0;
    font-size: var(--text-base);
    font-weight: 700;
}

.comments__field {
    display: grid;
    gap: 0.375rem;
    margin-bottom: var(--space-sm);
}

.comments__label {
    font-size: var(--text-sm);
    font-weight: 600;
}

.comments__input,
.comments__textarea {
    display: block;
    width: 100%;
    max-width: 40rem;
    padding: 0.625rem 0.75rem;
    font: inherit;
    font-size: var(--text-sm);
    color: var(--color-text);
    background: var(--color-bg);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    transition: border-color var(--transition), box-shadow var(--transition);
}

.comments__textarea {
    min-height: 7rem;
    resize: vertical;
}

.comments__input:focus-visible,
.comments__textarea:focus-visible {
    outline: none;
    border-color: rgba(233, 69, 96, 0.45);
    box-shadow: var(--focus-ring);
}

.comments__error {
    font-size: var(--text-xs);
    color: var(--color-secondary);
}

.comments__submit {
    justify-self: start;
}

.comment--reply {
    margin-top: var(--space-sm);
    padding: var(--space-sm);
    background: var(--color-bg-alt);
}

.comment__replies {
    margin: var(--space-sm) 0 0 0;
    padding: 0 0 0 var(--space-md);
    list-style: none;
    border-left: 2px solid var(--color-border);
}

.comments__cta {
    justify-self: center;
}

.comments__list {
    display: grid;
    gap: var(--space-sm);
    margin: 0;
    padding: 0;
    list-style: none;
}

.comment {
    padding: var(--space-md);
    background: var(--color-bg);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
}

.comment__header {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem 0.75rem;
    align-items: baseline;
    margin-bottom: 0.5rem;
}

.comment__time {
    font-size: var(--text-sm);
    color: var(--color-text-muted);
}

.comment__text {
    margin: 0;
    line-height: 1.75;
}

.sidebar-news__title {
    margin: 0;
    padding-bottom: var(--space-sm);
    font-size: var(--text-lg);
}

.sidebar-news--spaced {
    margin-top: var(--space-lg);
    padding-top: var(--space-sm);
}

.news-rows--sidebar {
    margin: 0;
    padding: 0;
    list-style: none;
}

.news-rows--sidebar .news-row__link {
    display: flex;
    flex-direction: row;
    gap: var(--space-sm);
    align-items: flex-start;
    padding: var(--space-sm) 0;
    color: inherit;
    text-decoration: none;
}

.news-rows--sidebar .news-row__link:hover .news-row__title,
.news-rows--sidebar .news-row__link:focus-visible .news-row__title {
    color: var(--color-accent);
}

.news-rows--sidebar .news-row__link:focus-visible {
    outline: none;
    box-shadow: var(--focus-ring);
}

.news-rows--sidebar .news-row__media {
    position: relative;
    flex-shrink: 0;
    width: 6.75rem;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background-color: var(--color-bg-alt);
    border-radius: var(--radius-md);
}

.news-rows--sidebar .news-row__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.news-rows--sidebar .news-row__badge {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 1;
    padding: 0.125rem 0.375rem;
    font-size: var(--text-xs);
    font-weight: 700;
    line-height: 1.2;
    color: #fff;
    background-color: var(--color-accent);
}

.news-rows--sidebar .news-row__title {
    margin: 0;
    font-size: var(--text-sm);
    font-weight: 700;
    line-height: 1.35;
    color: var(--color-text);
}

.more-news {
    margin-top: 0;
    padding-top: var(--space-lg);
    border-top: 1px solid var(--color-border);
}

.more-news__header {
    display: grid;
    gap: 0.25rem;
    margin-bottom: var(--space-md);
}

.more-news__title {
    margin: 0;
    font-size: var(--text-xl);
}

.more-news__lead {
    margin: 0;
    color: var(--color-text-muted);
}

.more-news__list {
    display: grid;
    gap: var(--space-md);
    margin: 0;
    padding: 0;
}

.more-news .card__media {
    border-radius: var(--radius-md);
    border: 1px solid var(--color-border);
    box-shadow: var(--shadow-sm);
}

.more-news .card__caption {
    display: block;
    padding-top: var(--space-sm);
}

.more-news .card__title {
    padding: 0;
    font-size: var(--text-base);
}


.related__title,
.newsletter__title {
    margin: 0 0 0.5rem 0;
    font-size: var(--text-lg);
}

.related__list {
    display: grid;
    gap: 0.75rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

.related-card {
    display: grid;
    gap: 0.25rem;
}

.related-card__time {
    font-size: var(--text-xs);
    color: var(--color-text-muted);
}

.related-card__title {
    margin: 0;
    font-size: var(--text-base);
    line-height: 1.45;
}

.related-card__link {
    color: inherit;
    text-decoration: none;
}

.related-card__link:hover {
    text-decoration: underline;
}

.newsletter__text {
    margin: 0 0 var(--space-sm) 0;
    color: var(--color-text-muted);
}

.newsletter__form {
    display: grid;
    gap: 0.5rem;
}

.newsletter__input {
    display: block;
    width: 100%;
    padding: 0.75rem 0.875rem;
    font: inherit;
    color: var(--color-text);
    background: var(--color-bg);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    transition: var(--transition);
}

.newsletter__input:focus {
    outline: none;
    border-color: rgba(233, 69, 96, 0.6);
    box-shadow: 0 0 0 3px rgba(233, 69, 96, 0.15);
}

.newsletter__submit {
    width: 100%;
}

@media (min-width: 1024px) {
    .page--haber-detay__grid {
        grid-template-columns: 1fr 22rem;
        align-items: start;
    }

    .newsletter__form {
        grid-template-columns: 1fr auto;
        align-items: center;
    }

    .newsletter__submit {
        width: auto;
        white-space: nowrap;
    }

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

@media (min-width: 1280px) {
    .more-news__list {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

.next-article {
    display: flex;
    justify-content: center;
    margin-top: 0;
}

.next-article__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 14rem;
    min-height: 2.75rem;
    padding: 0 var(--space-lg);
    font-size: var(--text-sm);
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #fff;
    background: #7a0000;
    border-radius: 0;
    text-decoration: none;
    transition: background-color var(--transition);
}

.next-article__btn:hover {
    background: #5f0000;
}

.next-article__btn:focus-visible {
    outline: none;
    box-shadow: var(--focus-ring);
}

.page--haber-detay .article-attached-media {
    display: block;
    margin: var(--space-md) 0 var(--space-lg);
}

.page--haber-detay .article-attached-media__title {
    margin: 0 0 var(--space-sm);
    font-size: var(--text-lg);
    font-weight: 700;
    line-height: 1.3;
    color: var(--color-text);
}

.page--haber-detay .article-attached-media__list {
    display: grid;
    gap: var(--space-md);
    margin: 0;
    padding: 0;
    list-style: none;
}

.page--haber-detay .article-attached-media__item {
    margin: 0;
}

.page--haber-detay .article-attached-media__figure {
    display: block;
    margin: 0;
}

.page--haber-detay .article-attached-media__image,
.page--haber-detay .article-attached-media__video {
    display: block;
    width: 100%;
    max-width: 100%;
    height: auto;
    border-radius: var(--radius-md);
    background: var(--color-bg-alt);
}

.page--haber-detay .article-attached-media__caption {
    margin: var(--space-xs) 0 0;
    font-size: var(--text-sm);
    line-height: 1.45;
    color: var(--color-text-muted);
}

@media (min-width: 768px) {
    .page--haber-detay .article-attached-media__list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (prefers-reduced-motion: reduce) {
    .breadcrumb__link,
    .tag,
    .newsletter__input {
        transition: none;
    }
}
