*, *::before, *::after { box-sizing: border-box; }

:root {
    --dp-line: #e4e6ea;
    --dp-muted: #6b7280;
    --dp-text: #14161a;
    --dp-radius: 2px;
}

html { overflow-x: hidden; }

body {
    margin: 0;
    background: var(--dp-bg, #f4f5f7);
    font-family: var(--dp-font-body, 'Georgia', serif);
    color: var(--dp-text);
    -webkit-font-smoothing: antialiased;
    line-height: 1.5;
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-family: var(--dp-font-heading, 'Archivo', sans-serif);
    margin: 0;
}

a { color: inherit; text-decoration: none; }
a:hover { color: var(--dp-accent, #d8232a); }
img { max-width: 100%; display: block; height: auto; }
ul { margin: 0; padding: 0; list-style: none; }

.dp-container {
    max-width: 1360px;
    margin: 0 auto;
    padding: 0 24px;
}

.screen-reader-text {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(1px, 1px, 1px, 1px);
}

.dp-topbar {
    background: #fff;
    border-bottom: 1px solid var(--dp-line);
}

.dp-topbar-inner {
    padding: 16px 24px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.dp-logo { display: flex; align-items: center; }
.dp-logo img { height: 56px; width: auto; }
.dp-logo-text { font-size: 20px; font-weight: 800; font-family: var(--dp-font-heading); }

.dp-topbar-right {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 18px;
}

.dp-topbar-menu-list {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: .02em;
    color: var(--dp-muted);
}

.dp-topbar-menu-list a {
    display: flex;
    align-items: center;
    color: var(--dp-muted);
}

.dp-topbar-menu-list a:hover { color: var(--dp-accent); }

.dp-topbar-menu-list li:first-child a::before {
    content: '';
    display: inline-block;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--dp-accent, #d8232a);
    margin-right: 6px;
}

.dp-ticker {
    background: #fff;
    border-bottom: 1px solid var(--dp-line);
    overflow: hidden;
}

.dp-ticker-inner {
    max-width: 1360px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    gap: 16px;
    height: 40px;
}

.dp-ticker-label {
    flex: 0 0 auto;
    background: var(--dp-accent, #d8232a);
    color: #fff;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .1em;
    text-transform: uppercase;
    padding: 5px 9px;
}

.dp-ticker-track {
    flex: 1 1 auto;
    overflow: hidden;
    white-space: nowrap;
}

.dp-ticker-list {
    display: inline-flex;
    gap: 40px;
    font-size: 13.5px;
    color: #3d4147;
    animation: dp-tick var(--dp-ticker-duration, 70s) linear infinite;
}

.dp-ticker-list a { white-space: nowrap; color: #3d4147; }
.dp-ticker-list a:hover { color: var(--dp-accent); }
.dp-ticker:hover .dp-ticker-list { animation-play-state: paused; }

@keyframes dp-tick {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

.dp-fixed-ad {
    margin: 10px auto;
    max-width: 100%;
    overflow: hidden;
}

.dp-fixed-ad-inner {
    max-width: 1360px;
    margin: 0 auto;
    overflow: hidden;
}

.dp-nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 4px;
    width: 34px;
    height: 34px;
    background: none;
    border: 1px solid var(--dp-line);
    border-radius: var(--dp-radius);
    cursor: pointer;
}

.dp-nav-toggle span {
    display: block;
    height: 2px;
    width: 18px;
    margin: 0 auto;
    background: var(--dp-text);
}

.dp-search {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #f1f2f4;
    border: 1px solid var(--dp-line);
    border-radius: var(--dp-radius);
    padding: 0 12px;
    height: 40px;
    width: 220px;
}

.dp-search input {
    border: none;
    background: none;
    outline: none;
    font-size: 13.5px;
    width: 100%;
}

.dp-search button {
    background: none;
    border: none;
    color: #8a8f98;
    display: flex;
    cursor: pointer;
    padding: 0;
}

.dp-primary-nav {
    background: var(--dp-ink, #16181c);
    color: #fff;
    position: sticky;
    top: 0;
    z-index: 20;
}

.dp-nav-fade {
    display: none;
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 64px;
    pointer-events: none;
    align-items: center;
    justify-content: flex-end;
    padding-right: 8px;
    background: linear-gradient(90deg, rgba(0,0,0,0), var(--dp-ink, #16181c) 62%);
}

.dp-nav-inner {
    position: relative;
    display: flex;
    align-items: stretch;
    gap: 2px;
    overflow-x: auto;
    scrollbar-width: none;
}

.dp-nav-inner::-webkit-scrollbar { display: none; }

.dp-nav-list {
    display: flex;
    align-items: stretch;
}

.dp-nav-list li { display: flex; }

.dp-nav-list a {
    display: flex;
    align-items: center;
    padding: 0 14px;
    height: 46px;
    white-space: nowrap;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .04em;
    text-transform: uppercase;
    color: #fff;
    opacity: .85;
}

.dp-nav-list a:hover,
.dp-nav-list .current-menu-item > a {
    opacity: 1;
    color: #fff;
    background: rgba(255,255,255,.07);
}

.dp-layout {
    padding: 26px 24px 60px;
    display: flex;
    flex-wrap: wrap;
    gap: 28px;
    align-items: flex-start;
}

.dp-content {
    flex: 4 1 620px;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 26px;
}

.dp-article {
    min-width: 0;
}

.dp-sidebar {
    flex: 1 1 268px;
    max-width: 100%;
    min-width: 240px;
    display: grid;
    grid-template-columns: 1fr;
    align-content: start;
    gap: 20px;
}

.dp-banner-slot,
.dp-banner-row {
    border: 1px dashed #c3c7cd;
    background: #fff;
    min-height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #9aa0a8;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: .1em;
    text-align: center;
    padding: 10px;
    max-width: 100%;
    overflow: hidden;
}

.dp-banner-inline {
    grid-column: 1 / -1;
}

.dp-banner-inline-article {
    margin: 24px 0;
}

.dp-hero-row {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.dp-card {
    background: #fff;
    border: 1px solid var(--dp-line);
}

.dp-card-cat {
    display: inline-block;
    background: var(--dp-accent, #d8232a);
    color: #fff;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
    padding: 4px 8px;
    margin-bottom: 10px;
}

.dp-card-featured {
    flex: 2 1 380px;
    min-width: 0;
}

.dp-card-media {
    position: relative;
    display: block;
    overflow: hidden;
    background: #e9ebee;
}

.dp-card-media img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.dp-card-featured .dp-card-media {
    aspect-ratio: 16 / 9;
}

.dp-card-featured .dp-card-media-placeholder {
    width: 100%;
    height: 100%;
    background: repeating-linear-gradient(135deg, #e9ebee, #e9ebee 12px, #e3e6ea 12px, #e3e6ea 24px);
}

.dp-card-featured .dp-card-body { padding: 20px 22px 24px; }

.dp-card-featured .dp-card-title {
    font-size: 28px;
    line-height: 1.16;
    font-weight: 800;
    letter-spacing: -.015em;
    margin-bottom: 10px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.dp-card-excerpt {
    margin: 0 0 12px;
    color: #4b5158;
    font-size: 15.5px;
    line-height: 1.55;
}

.dp-card-meta {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12.5px;
    color: var(--dp-muted);
}

.dp-side-list {
    flex: 1 1 260px;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.dp-card-small {
    display: flex;
    gap: 12px;
    padding: 14px;
}

.dp-card-small .dp-card-media {
    flex: 0 0 86px;
    height: 64px;
}

.dp-card-small .dp-card-media-placeholder { width: 100%; height: 100%; background: #e9ebee; }
.dp-card-small .dp-card-body { min-width: 0; }
.dp-card-small .dp-card-title {
    font-size: 15px;
    line-height: 1.3;
    font-weight: 700;
    margin: 4px 0 6px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.dp-card-small .dp-card-cat { font-size: 11px; padding: 0; background: none; color: var(--dp-accent); margin-bottom: 0; }
.dp-card-time, .dp-card-date { font-size: 12px; color: var(--dp-muted); }

.dp-section-heading {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 14px;
    border-top: 2px solid var(--dp-ink, #14161a);
    padding-top: 10px;
}

.dp-section-heading h1,
.dp-section-heading h2 {
    font-size: 22px;
    font-weight: 800;
    letter-spacing: .02em;
}

.dp-section-link {
    margin-left: auto;
    font-size: 12.5px;
    font-weight: 700;
    color: var(--dp-accent, #d8232a);
    letter-spacing: .04em;
    text-transform: uppercase;
}

.dp-card-grid-wrap {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
    gap: 18px;
}

.dp-card-grid-wrap-2col {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

@media (max-width: 560px) {
    .dp-card-grid-wrap-2col { grid-template-columns: 1fr; }
}

.dp-card-grid {
    padding: 16px;
    overflow: hidden;
    min-width: 0;
}

.dp-card-grid:hover { border-color: #c9ccd1; }

.dp-card-grid .dp-card-media {
    float: left;
    width: 110px;
    height: 110px;
    margin: 0 16px 8px 0;
    border-radius: var(--dp-radius);
}

.dp-card-grid .dp-card-media-placeholder { width: 100%; height: 100%; background: #e9ebee; }
.dp-card-grid .dp-card-cat { margin-bottom: 8px; }
.dp-card-grid .dp-card-title {
    font-size: 16.5px;
    line-height: 1.25;
    font-weight: 700;
    margin: 0 0 8px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.dp-card-grid .dp-card-excerpt { font-size: 14px; margin-bottom: 8px; }
.dp-card-grid .dp-card-date { display: block; clear: both; }

.dp-widget {
    background: #fff;
    border: 1px solid var(--dp-line);
}

.dp-widget-title {
    background: var(--dp-ink, #14161a);
    color: #fff;
    padding: 11px 14px;
    font-size: 12.5px;
    font-weight: 800;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.dp-widget ul li {
    border-bottom: 1px solid var(--dp-line);
}

.dp-widget ul li:last-child { border-bottom: none; }
.dp-widget ul li a { display: block; padding: 13px 14px; }
.dp-widget ul li a:hover { background: #fafbfc; }

.dp-widget-title-linked {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.dp-widget-title-link {
    font-size: 11.5px;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: #c8ccd2;
}

.dp-widget-title-link:hover { color: #fff; }

.dp-widget-list-title {
    display: block;
    font-size: 14.5px;
    font-weight: 600;
    line-height: 1.35;
}

.dp-widget-list-time {
    display: block;
    margin-top: 5px;
    font-size: 11.5px;
    color: var(--dp-muted);
}

.dp-widget-cta {
    padding: 12px 14px;
    border-top: 1px solid var(--dp-line);
}

.dp-widget-cta a {
    display: block;
    text-align: center;
    background: var(--dp-accent, #d8232a);
    color: #fff;
    padding: 11px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.dp-widget-cta a:hover { background: var(--dp-accent-dark, #a5171d); color: #fff; }

.dp-breadcrumbs { margin-bottom: 6px; }

.dp-breadcrumbs ol {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    font-size: 12.5px;
    color: var(--dp-muted);
}

.dp-breadcrumbs li {
    list-style: none;
}

.dp-breadcrumbs li:not(:last-child)::after {
    content: '/';
    margin-left: 6px;
    color: #c3c7cd;
}

.dp-breadcrumbs a { color: var(--dp-muted); }
.dp-breadcrumbs a:hover { color: var(--dp-accent); }
.dp-breadcrumbs li[aria-current="page"] { color: var(--dp-text); font-weight: 600; }

.dp-article-title {
    font-size: 34px;
    line-height: 1.2;
    font-weight: 800;
    letter-spacing: -.01em;
    margin-bottom: 14px;
}

.dp-article-meta {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--dp-muted);
    margin-bottom: 18px;
}

.dp-article-media { margin-bottom: 20px; }
.dp-article-media img { width: 100%; }

.dp-article-content {
    font-size: 17px;
    line-height: 1.7;
}

.dp-article-content p { margin: 0 0 18px; }

.dp-article-content a {
    color: var(--dp-accent, #d8232a);
    font-weight: 700;
    text-decoration: underline;
}

.dp-article-content a:hover {
    color: var(--dp-accent-dark, #a5171d);
}
.dp-article-content img { margin: 20px 0; }

.dp-article-content iframe,
.dp-article-content embed,
.dp-article-content object,
.dp-article-content video {
    max-width: 100%;
}

.dp-article-content table {
    display: block;
    max-width: 100%;
    overflow-x: auto;
}

.dp-article-content pre {
    max-width: 100%;
    overflow-x: auto;
}
.dp-article-content h2 { font-size: 24px; margin: 28px 0 14px; }
.dp-article-content h3 { font-size: 20px; margin: 24px 0 12px; }

.dp-article-content ul,
.dp-article-content ol {
    margin: 0 0 18px;
    padding-left: 22px;
}

.dp-article-content ul { list-style: disc; }
.dp-article-content ol { list-style: decimal; }
.dp-article-content li { margin-bottom: 6px; }
.dp-article-content blockquote {
    border-left: 3px solid var(--dp-accent);
    margin: 20px 0;
    padding: 4px 0 4px 18px;
    font-style: italic;
    color: #4b5158;
}

.dp-pagination {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 10px;
}

.dp-pagination .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 36px;
    height: 36px;
    padding: 0 10px;
    border: 1px solid var(--dp-line);
    background: #fff;
    font-size: 13px;
}

.dp-pagination .page-numbers.current {
    background: var(--dp-accent);
    color: #fff;
    border-color: var(--dp-accent);
}

.dp-footer {
    background: var(--dp-ink, #14161a);
    color: var(--dp-footer-text, #c3c8cf);
    padding: 44px 24px 30px;
}

.dp-footer a { color: inherit; }

.dp-footer-top {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: space-between;
}

.dp-footer-brand { flex: 1 1 260px; max-width: 340px; }

.dp-footer-widget { margin-bottom: 18px; }
.dp-footer-widget:last-child { margin-bottom: 0; }

.dp-footer-widget-title {
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .1em;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.dp-footer-widget img { max-width: 200px; height: auto; }
.dp-footer-widget p { margin: 0 0 10px; font-size: 14.5px; line-height: 1.6; opacity: .8; }
.dp-footer-widget ul { display: flex; flex-direction: column; gap: 9px; }
.dp-footer-widget a { opacity: .85; }
.dp-footer-widget a:hover { opacity: 1; }

.dp-footer-cols {
    flex: 0 1 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 48px;
}

.dp-footer-col { display: flex; flex-direction: column; gap: 9px; }

.dp-footer-label {
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .1em;
    text-transform: uppercase;
    margin-bottom: 4px;
}

.dp-footer-links { display: flex; flex-direction: column; gap: 9px; }
.dp-footer-links a { font-size: 14px; opacity: .8; }
.dp-footer-links a:hover { opacity: 1; }

.dp-footer-bottom {
    margin-top: 26px;
    padding-top: 18px;
    border-top: 1px solid rgba(128, 128, 128, .25);
    font-size: 12.5px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 10px 24px;
    opacity: .85;
}

.dp-footer-bottom-col p { margin: 0; }
.dp-footer-bottom-right { margin-left: auto; }

@media (max-width: 900px) {
    .dp-nav-toggle { display: flex; }

    .dp-primary-nav { position: relative; }

    .dp-nav-inner {
        display: none;
        position: fixed;
        left: 0;
        right: 0;
        max-width: none;
        margin: 0;
        flex-direction: column;
        overflow-y: auto;
        max-height: calc(100vh - 60px);
        background: var(--dp-ink, #16181c);
        box-shadow: 0 12px 20px rgba(0, 0, 0, .25);
        z-index: 40;
    }

    .dp-nav-inner.is-open { display: flex; }
    .dp-nav-fade { display: none !important; }

    .dp-nav-list {
        flex-direction: column;
        width: 100%;
    }

    .dp-nav-list a { height: auto; padding: 12px 0; }

    .dp-hero-row { flex-direction: column; }
    .dp-side-list { flex-direction: column; }
}

@media (max-width: 600px) {
    .dp-topbar-inner { padding: 12px 16px 20px; }
    .dp-container { padding: 0 16px; }
    .dp-search { width: 100%; }
    .dp-topbar-right { width: 100%; justify-content: space-between; }
    .dp-topbar-menu { width: 100%; }
    .dp-topbar-menu-list { flex-wrap: wrap; gap: 10px 16px; }
    .dp-article-title { font-size: 26px; }
    .dp-card-featured .dp-card-title { font-size: 22px; }
}
