/* ===== Общие стили страниц ===== */
.work-page,
.ads-page {
    background: #ffffff;
    padding: 80px 20px;
    font-family: 'Inter', 'Segoe UI', sans-serif;
}

.work-container,
.ads-container {
    max-width: 1200px;
    margin: 0 auto;
}

/* ===== Заголовки ===== */
.work-page h1,
.ads-page h1 {
    font-size: 44px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 10px;
    color: #000;
}

.work-subtitle,
.ads-subtitle {
    text-align: center;
    font-size: 18px;
    color: #666;
    max-width: 720px;
    margin: 0 auto 60px;
}

/* ===== Сетка ===== */
.work-grid,
.ads-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
}

/* ===== Карточки ===== */
.work-card,
.ads-card {
    background: #fff;
    border-radius: 14px;
    padding: 30px;
    border: 1px solid #e5e5e5;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.work-card:hover,
.ads-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

/* ===== Заголовок карточки ===== */
.work-card h3,
.ads-card h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #111;
}

/* ===== Описание ===== */
.work-card p,
.ads-card p {
    font-size: 15px;
    color: #555;
    line-height: 1.6;
    margin-bottom: 18px;
}

/* ===== Список ===== */
.work-card ul,
.ads-card ul {
    list-style: none;
    padding: 0;
    margin: 0 0 25px;
}

.work-card ul li,
.ads-card ul li {
    font-size: 14px;
    color: #333;
    margin-bottom: 8px;
    padding-left: 18px;
    position: relative;
}

.work-card ul li::before,
.ads-card ul li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #000;
    font-size: 18px;
    line-height: 1;
}

/* ===== Кнопки ===== */
.work-card button,
.ads-card button {
    margin-top: auto;
    background: #000;
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 14px;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.3s ease;
}

.work-card button:hover,
.ads-card button:hover {
    background: #222;
}

/* ===== Адаптив ===== */
@media (max-width: 768px) {
    .work-page h1,
    .ads-page h1 {
        font-size: 34px;
    }

    .work-subtitle,
    .ads-subtitle {
        font-size: 16px;
        margin-bottom: 40px;
    }
}
