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

.nwsarc-page {
    --nwsarc-navy: #00477A;
    --nwsarc-navy-dark: #00325a;
    --nwsarc-text: #111827;
    --nwsarc-muted: #6b7280;
    --nwsarc-faint: #9ca3af;
    --nwsarc-border: #e5e7eb;
    --nwsarc-bg-soft: #f8fafc;
    direction: rtl;
    text-align: right;
    max-width: 1180px;
    margin: 0 auto;
    padding: 20px 16px 60px;
    color: var(--nwsarc-text);
}

.nwsarc-page a {
    text-decoration: none;
    color: inherit;
}

.nwsarc-page ul,
.nwsarc-page ol {
    margin: 0;
    padding: 0;
    list-style: none;
}

.nwsarc-breadcrumb {
    display: flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #00609c, var(--nwsarc-navy));
    color: #fff;
    padding: 12px 20px;
    border-radius: 12px;
    font-size: 13.5px;
    font-weight: 600;
    margin-bottom: 26px;
    width: fit-content;
    max-width: 100%;
}

.nwsarc-breadcrumb-home {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    opacity: .9;
}

.nwsarc-breadcrumb-home svg {
    width: 15px;
    height: 15px;
}

.nwsarc-breadcrumb-sep {
    opacity: .55;
    font-size: 12px;
}

.nwsarc-breadcrumb-current {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.nwsarc-head {
    background: #fff;
    border: 1px solid var(--nwsarc-border);
    border-radius: 18px;
    padding: 24px;
    margin-bottom: 28px;
}

.nwsarc-title {
    font-size: 20px;
    font-weight: 800;
    margin: 0 0 18px;
    color: var(--nwsarc-text);
}

.nwsarc-filters {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
}

.nwsarc-field {
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.nwsarc-field-search {
    grid-column: 1 / -1;
}

.nwsarc-field label {
    font-size: 12.5px;
    font-weight: 600;
    color: var(--nwsarc-muted);
}

.nwsarc-field select,
.nwsarc-field input[type="text"] {
    width: 100%;
    border: 1.5px solid var(--nwsarc-border);
    background: var(--nwsarc-bg-soft);
    border-radius: 10px;
    padding: 11px 14px;
    font-family: inherit;
    font-size: 13.5px;
    color: var(--nwsarc-text);
    outline: none;
    transition: border-color .2s ease, background .2s ease, box-shadow .2s ease;
    appearance: none;
}

.nwsarc-field select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%236b7280' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: left 12px center;
    background-size: 15px;
    padding-left: 34px;
    cursor: pointer;
}

.nwsarc-field select:hover,
.nwsarc-field input[type="text"]:hover {
    border-color: #cbd5e1;
}

.nwsarc-field select:focus,
.nwsarc-field input[type="text"]:focus {
    background-color: #fff;
    border-color: var(--nwsarc-navy);
    box-shadow: 0 0 0 4px rgba(0, 71, 122, 0.1);
}

.nwsarc-search-box {
    position: relative;
    display: flex;
    align-items: center;
}

.nwsarc-search-box svg {
    position: absolute;
    right: 14px;
    width: 16px;
    height: 16px;
    color: var(--nwsarc-faint);
    pointer-events: none;
}

.nwsarc-search-box input {
    padding-right: 40px !important;
}

.nwsarc-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.nwsarc-item {
    display: flex;
    gap: 20px;
    background: #fff;
    border: 1px solid var(--nwsarc-border);
    border-radius: 16px;
    padding: 16px;
    transition: box-shadow .2s ease, border-color .2s ease, transform .2s ease;
}

.nwsarc-item:hover {
    box-shadow: 0 10px 24px -12px rgba(17, 24, 39, 0.15);
    border-color: #d7dde3;
    transform: translateY(-2px);
}

.nwsarc-item-img {
    flex-shrink: 0;
    width: 220px;
    height: 150px;
    border-radius: 12px;
    overflow: hidden;
    background: var(--nwsarc-bg-soft);
}

.nwsarc-item-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .35s ease;
}

.nwsarc-item:hover .nwsarc-item-img img {
    transform: scale(1.05);
}

.nwsarc-item-body {
    display: flex;
    flex-direction: column;
    gap: 8px;
    min-width: 0;
}

.nwsarc-item-eyebrow {
    font-size: 12px;
    font-weight: 600;
    color: var(--nwsarc-navy);
}

.nwsarc-item-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--nwsarc-text);
    margin: 0;
    line-height: 1.6;
    transition: color .2s ease;
}

.nwsarc-item:hover .nwsarc-item-title {
    color: var(--nwsarc-navy);
}

.nwsarc-item-desc {
    font-size: 13px;
    color: var(--nwsarc-muted);
    line-height: 1.9;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.nwsarc-item-meta {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: var(--nwsarc-faint);
    margin-top: auto;
}

.nwsarc-item-meta svg {
    width: 14px;
    height: 14px;
}

.nwsarc-empty {
    text-align: center;
    color: var(--nwsarc-muted);
    font-size: 14px;
    padding: 50px 0;
}

.nwsarc-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin-top: 34px;
}

.nwsarc-page-btn {
    min-width: 38px;
    height: 38px;
    padding: 0 6px;
    border-radius: 10px;
    border: 1px solid var(--nwsarc-border);
    background: #fff;
    color: var(--nwsarc-muted);
    font-family: inherit;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .2s ease, color .2s ease, border-color .2s ease;
}

.nwsarc-page-btn svg {
    width: 16px;
    height: 16px;
}

.nwsarc-page-btn:hover {
    border-color: var(--nwsarc-navy);
    color: var(--nwsarc-navy);
}

.nwsarc-page-btn.nwsarc-active {
    background: var(--nwsarc-navy);
    border-color: var(--nwsarc-navy);
    color: #fff;
}

.nwsarc-page-dots {
    color: var(--nwsarc-faint);
    font-size: 13px;
    padding: 0 4px;
}

@media (max-width: 900px) {
    .nwsarc-filters {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 640px) {
    .nwsarc-filters {
        grid-template-columns: 1fr;
    }

    .nwsarc-item {
        flex-direction: column;
    }

    .nwsarc-item-img {
        width: 100%;
        height: 190px;
    }

    .nwsarc-breadcrumb-current {
        white-space: normal;
    }
}



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

.nwsdet-page {
    --nwsdet-navy: #00477A;
    --nwsdet-navy-dark: #00325a;
    --nwsdet-text: #111827;
    --nwsdet-muted: #6b7280;
    --nwsdet-faint: #9ca3af;
    --nwsdet-border: #e5e7eb;
    --nwsdet-bg-soft: #f8fafc;
    direction: rtl;
    text-align: right;
    max-width: 1180px;
    margin: 0 auto;
    padding: 20px 16px 60px;
    color: var(--nwsdet-text);
}

.nwsdet-page a {
    text-decoration: none;
    color: inherit;
}

.nwsdet-breadcrumb {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    background:#00609c;
    color: #FFFFFF;
    padding: 12px 20px;
    border-radius: 12px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 30px;
}

.nwsdet-breadcrumb-home {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    opacity: .9;
}

.nwsdet-breadcrumb-home svg {
    width: 15px;
    height: 15px;
}

.nwsdet-breadcrumb-sep {
    opacity: .55;
    font-size: 12px;
}

.nwsdet-breadcrumb-link {
    opacity: .85;
    transition: opacity .2s ease;
}

.nwsdet-breadcrumb-link:hover {
    opacity: 1;
    text-decoration: underline;
}

.nwsdet-breadcrumb-current {
    opacity: .85;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    max-width: 100%;
}

.nwsdet-article {
    background: #fff;
    border: 1px solid var(--nwsdet-border);
    border-radius: 20px;
    padding: 34px;
}

.nwsdet-eyebrow {
    display: inline-block;
    font-size: 12.5px;
    font-weight: 700;
    color: var(--nwsdet-navy);
    margin-bottom: 10px;
}

.nwsdet-title {
    font-size: 23px;
    line-height: 1.6;
    font-weight: 800;
    color: var(--nwsdet-text);
    margin: 0 0 18px;
}

.nwsdet-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 18px;
    padding-bottom: 18px;
    margin-bottom: 22px;
    border-bottom: 1px solid var(--nwsdet-border);
    font-size: 12.5px;
    color: var(--nwsdet-faint);
}

.nwsdet-meta-item {
    display: flex;
    align-items: center;
    gap: 6px;
}

.nwsdet-meta-item svg {
    width: 15px;
    height: 15px;
}

.nwsdet-meta-actions {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-right: auto;
}

.nwsdet-icon-btn {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 1px solid var(--nwsdet-border);
    background: #fff;
    color: var(--nwsdet-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background .2s ease, color .2s ease, border-color .2s ease;
}

.nwsdet-icon-btn svg {
    width: 15px;
    height: 15px;
}

.nwsdet-icon-btn:hover {
    background: var(--nwsdet-navy);
    color: #fff;
    border-color: var(--nwsdet-navy);
}

.nwsdet-icon-btn.nwsdet-active {
    background: var(--nwsdet-navy);
    color: #fff;
    border-color: var(--nwsdet-navy);
}

.nwsdet-lead {
    background: var(--nwsdet-bg-soft);
    border-radius: 14px;
    padding: 18px 20px;
    font-size: 14.5px;
    font-weight: 500;
    line-height: 2;
    color: #374151;
    margin: 0 0 26px;
    text-align: justify;
}

.nwsdet-content {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 26px;
    margin-bottom: 26px;
}

.nwsdet-figure {
    margin: 0;
}

.nwsdet-figure img {
    width: 100%;
    height: auto;
    border-radius: 14px;
    display: block;
    border: 1px solid var(--nwsdet-border);
}

.nwsdet-figure figcaption {
    font-size: 12px;
    color: var(--nwsdet-faint);
    margin-top: 10px;
    line-height: 1.8;
    text-align: center;
}

.nwsdet-text {
    font-size: 14.5px;
    line-height: 2.1;
    color: #374151;
    text-align: justify;
}

.nwsdet-text p {
    margin: 0 0 16px;
}

.nwsdet-text p:last-child {
    margin-bottom: 0;
}

.nwsdet-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    padding-top: 22px;
    border-top: 1px solid var(--nwsdet-border);
}

.nwsdet-tag {
    background: var(--nwsdet-bg-soft);
    color: var(--nwsdet-muted);
    font-size: 12px;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: 20px;
    border: 1px solid var(--nwsdet-border);
}

.nwsdet-share {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 22px;
    padding-top: 22px;
    border-top: 1px solid var(--nwsdet-border);
}

.nwsdet-share-label {
    font-size: 13px;
    font-weight: 600;
    color: var(--nwsdet-muted);
}

.nwsdet-share-btns {
    display: flex;
    align-items: center;
    gap: 10px;
}

.nwsdet-share-btn {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1px solid var(--nwsdet-border);
    background: #fff;
    color: var(--nwsdet-navy);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background .2s ease, color .2s ease, transform .2s ease;
}

.nwsdet-share-btn svg {
    width: 16px;
    height: 16px;
}

.nwsdet-share-btn:hover {
    background: var(--nwsdet-navy);
    color: #fff;
    transform: translateY(-2px);
}

.nwsdet-share-btn.nwsdet-copied {
    background: #059669;
    border-color: #059669;
    color: #fff;
}

.nwsdet-related {
    margin-top: 38px;
}

.nwsdet-related-title {
    font-size: 17px;
    font-weight: 800;
    margin: 0 0 18px;
    color: var(--nwsdet-text);
}

.nwsdet-related-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.nwsdet-related-item {
    display: flex;
    flex-direction: column;
    background: #fff;
    border: 1px solid var(--nwsdet-border);
    border-radius: 14px;
    overflow: hidden;
    transition: box-shadow .2s ease, transform .2s ease;
}

.nwsdet-related-item:hover {
    box-shadow: 0 10px 24px -12px rgba(17, 24, 39, 0.15);
    transform: translateY(-2px);
}

.nwsdet-related-img {
    height: 130px;
    overflow: hidden;
    background: var(--nwsdet-bg-soft);
}

.nwsdet-related-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.nwsdet-related-body {
    padding: 14px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.nwsdet-related-body h3 {
    font-size: 13.5px;
    font-weight: 700;
    line-height: 1.7;
    margin: 0;
    color: var(--nwsdet-text);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.nwsdet-related-body span {
    font-size: 11.5px;
    color: var(--nwsdet-faint);
}

@media (max-width: 760px) {
    .nwsdet-article {
        padding: 22px;
    }

    .nwsdet-content {
        grid-template-columns: 1fr;
    }

    .nwsdet-related-list {
        grid-template-columns: 1fr;
    }

    .nwsdet-title {
        font-size: 19px;
    }
}

@media print {
    .nwsdet-breadcrumb,
    .nwsdet-meta-actions,
    .nwsdet-tags,
    .nwsdet-share,
    .nwsdet-related {
        display: none !important;
    }
}