/* ============================================
   ПРОТЕЗ БЕСПЛАТНО (free-page) — плитка статей
   ============================================ */
.protez-besplatno-section {
    margin: 40px 0;
}

.protez-besplatno-section .articles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

@media (max-width: 768px) {
    .protez-besplatno-section .articles-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

.protez-besplatno-section .article-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
    scroll-margin-top: 120px;
    position: relative;
    min-height: 250px;
    background-image: none !important;
}

.protez-besplatno-section .article-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.protez-besplatno-section .article-image {
    height: 180px;
    overflow: hidden;
    position: relative;
}

.protez-besplatno-section .article-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.protez-besplatno-section .article-card:hover .article-image img {
    transform: scale(1.05);
}

.protez-besplatno-section .article-content {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.protez-besplatno-section .article-header { margin-bottom: 15px; }

.protez-besplatno-section .article-title {
    margin: 0 0 10px 0;
    font-size: 1.1rem;
    line-height: 1.3;
}

.protez-besplatno-section .article-title a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
}

.protez-besplatno-section .article-title a:hover { color: #3498db; }

.protez-besplatno-section .article-excerpt {
    color: #666;
    line-height: 1.4;
    font-size: 0.9rem;
    flex: 1;
}

.protez-besplatno-section .article-footer {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
}

.protez-besplatno-section .meta-item {
    display: flex;
    align-items: center;
    gap: 5px;
    color: #888;
}

.protez-besplatno-section .meta-item svg { flex-shrink: 0; stroke: #888; }

.protez-besplatno-section .article-read-more {
    width: 100%;
    box-sizing: border-box;
    text-transform: uppercase;
    padding: 8px 16px;
    font-weight: 600;
    border-radius: 25px;
    color: #fff;
    background: linear-gradient(180deg, #03737F 0%, #008bd0 100%);
    transition: all 0.3s ease 0s;
    text-decoration: none;
    font-size: 14px;
}

.protez-besplatno-section .article-read-more:hover {
    gap: 12px;
    background: #5ab520;
}

.protez-besplatno-section .article-read-more svg { transition: transform 0.3s ease; stroke: white; }
.protez-besplatno-section .article-read-more:hover svg { transform: translateX(5px); }

.protez-besplatno-section .article-card .article-content h2,
.protez-besplatno-section .article-card .article-title a,
.protez-besplatno-section .article-card .article-excerpt,
.protez-besplatno-section .article-card .article-meta,
.protez-besplatno-section .article-card .article-meta span { color: inherit !important; }

.protez-besplatno-section .article-card .article-date { color: #888 !important; font-size: 0.9rem; }

.protez-besplatno-section .article-meta {
    flex-direction: column;
    gap: 6px;
    margin-bottom: 0;
}

.protez-besplatno-section .article-author-static,
.protez-besplatno-section .article-author-name,
.protez-besplatno-section .article-meta .meta-item {
    color: #888 !important;
}
