/* ========== RESET ========== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    width: 100%;
    overflow-x: hidden;
    font-family: "Tajawal", sans-serif;
    background: #f5f5f5;
    color: #222;
}

/* ================= TITLE ================= */
.title-center {
    text-align: center;
    margin: 20px 0;
    font-size: 22px;
    font-weight: bold;
    color: #111;
}
/* News Container */
.news-container {
    max-width: 1200px;
    margin: 80px auto 20px auto;
    padding: 0 10px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

/* Card Style */
.news-item {
    background: #1e1e1e;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.5);
    display: flex;
    flex-direction: column;
    width: 100%;
    transition: transform 0.3s;
}

.news-item img {
    width: 100%;
    height: auto;
    max-height: 200px;
    object-fit: cover;
    display: block;
}

.news-content {
    padding: 15px;
    flex: 1;
    display: flex;
    flex-direction: column;
    word-break: break-word;
}
.news-content h3 {
    font-size:1.2rem;
    margin:0 0 10px 0;
    color:#fff;
}
.news-content p {
    font-size:0.95rem;
    color:#ccc;
    flex:1;
}
.news-content a {
    margin-top:10px;
    color:#00f;
    text-decoration:underline;
    font-weight:bold;
}
.news-date {
    font-size:0.75rem;
    color:#888;
    margin-top:5px;
}