/* ========== NEWS SECTION ========== */

.news-section {
    padding: 80px 32px 72px;
    background-color: #faf3de;
}

.news-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 56px;
    align-items: center;
}

/* Left text */
.news-content {
    max-width: 640px;
}

.news-label {
    text-transform: uppercase;
    font-size: 0.95rem;
    font-weight: 700;
    color: #f5a623; /* Kashat yellow-ish */
    letter-spacing: 0.08em;
    margin-bottom: 16px;
}

.news-title {
    font-size: 2.5rem;
    line-height: 1.1;
    font-weight: 700;
    color: #111827;
    margin-bottom: 20px;
}

.news-text {
    font-size: 1rem;
    line-height: 1.6;
    color: #4b5563;
    max-width: 540px;
    margin-bottom: 32px;
}

.news-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    background-color: #f5a623;
    color: #111827;
    border-radius: 999px;
    border: none;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    box-shadow: 0 14px 30px rgba(245, 166, 35, 0.4);
    transition: transform 0.15s ease, box-shadow 0.15s ease, background-color 0.15s ease;
}

.news-btn:hover {
    background-color: #e69615;
    transform: translateY(-1px);
    box-shadow: 0 18px 40px rgba(245, 166, 35, 0.5);
}

/* Right image */
.news-media {
    display: flex;
    justify-content: center;
    align-items: center;
}

.news-image-card {
    width: 100%;
    max-width: 520px;
    border-radius: 28px;
    overflow: hidden;
    background-color: #f9fafb;
    padding: 12px;
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.12);
}

.news-image-card img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 20px;
    object-fit: cover;
}

/* ========== FOOTER ========== */

.site-footer {
    border-top: 1px solid #e5e7eb;
    padding: 40px 32px 60px;
    background-color: #f9fafb;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 40px;
}

.footer-column {
    min-width: 0;
}

.footer-heading {
    font-size: 0.95rem;
    font-weight: 700;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 16px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li + li {
    margin-top: 8px;
}

.footer-links a {
    font-size: 0.95rem;
    color: #111827;
    text-decoration: none;
    transition: color 0.15s ease;
}

.footer-links a:hover {
    color: #f5a623;
}

/* Download column */
.footer-download-text {
    font-size: 0.95rem;
    color: #4b5563;
    margin-bottom: 16px;
}

.store-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.store-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 18px;
    border-radius: 12px;
    background-color: #ffffff;
    text-decoration: none;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.store-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 10px 26px rgba(0, 0, 0, 0.12);
}

.store-icon-placeholder {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: linear-gradient(135deg, #3bcc5a, #1185f3); /* fake Play Store icon */
}

.store-icon-placeholder.red {
    background: #dd1b21; /* fake App Gallery color */
}

.store-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.store-small {
    font-size: 0.7rem;
    color: #6b7280;
}

.store-main {
    font-size: 0.9rem;
    font-weight: 600;
    color: #111827;
}

/* ========== RESPONSIVE ========== */

@media (max-width: 1024px) {
    .news-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .news-media {
        justify-content: flex-start;
    }

    .news-title {
        font-size: 2.2rem;
    }

    .footer-container {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .news-section {
        padding: 56px 20px 40px;
    }

    .site-footer {
        padding: 32px 20px 40px;
    }

    .news-title {
        font-size: 1.9rem;
    }

    .footer-container {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .store-buttons {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 10px;
    }

    .store-btn {
        flex: 1 1 140px;
    }
}
