/* File: fragments/news-module.css */
.news-module-wrapper {
    padding: 20px 15px;
    background: var(--shell-bg);
    min-height: calc(100vh - 180px);
}

.news-module-sec-head {
    background: linear-gradient(135deg, #0A66C2 0%, #004282 100%);
    color: white;
    padding: 20px 25px;
    border-radius: 18px 18px 0 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.15rem;
    font-weight: 800;
    margin-bottom: 0;
}

.news-module-container {
    background: #ffffff;
    border-radius: 0 0 24px 24px;
    padding: 25px 20px;
    border: 1px solid #e2e8f0;
    border-top: none;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.news-module-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 20px;
    margin-bottom: 20px;
    border: 1px solid #edf2f7;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.03);
}

.news-module-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.news-module-icon {
    width: 40px;
    height: 40px;
    background: #f0f7ff;
    color: #0A66C2;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
}

.news-module-category {
    background: linear-gradient(135deg, #00d2ff 0%, #3a7bd5 100%);
    color: white;
    padding: 5px 12px;
    border-radius: 50px;
    font-size: 0.6rem;
    font-weight: 800;
    text-transform: uppercase;
}

.news-module-title {
    font-size: 1rem;
    color: #1e293b;
    font-weight: 700;
    margin: 10px 0 15px 0;
    line-height: 1.4;
}

.news-module-properties {
    background: #f8fafc;
    border-radius: 16px;
    padding: 12px 16px;
    border: 1px solid #f1f5f9;
}

.news-module-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid #edf2f7;
}

.news-module-row:last-child {
    border-bottom: none;
}

.news-module-key {
    font-size: 0.7rem;
    color: #94a3b8;
    font-weight: 700;
    text-transform: uppercase;
}

.news-module-value {
    font-size: 0.85rem;
    color: #0f172a;
    font-weight: 700;
    text-align: right;
}