
.issue-card {
    background: white;
    border: 1px solid #e9ecef;
    border-radius: 10px;
    padding: 20px;
    text-decoration: none;
    display: block; /* убираем flex, чтобы заголовок был блочным */
    transition: all 0.3s;
}
.issue-title {
    font-weight: 600;
    font-size: 1.1rem;
    color: #333;
    margin-bottom: 15px;
    word-break: break-word;
    display: block;
    width: 100%;
}
.issue-price {
    color: #ff6b00;
    font-weight: 500;
    margin-bottom: 15px;
    display: inline-block;
}
.issue-link {
    color: #2a5bd7;
    font-size: 0.9rem;
    font-weight: 500;
    text-decoration: none;
    float: right;
}
/* очистка float */
.issue-card::after {
    content: "";
    display: table;
    clear: both;
}


.issues-page {
    padding: 40px 0;
    background: #f8f9fa;
}
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
.page-title {
    font-size: 2.2rem;
    text-align: center;
    margin-bottom: 20px;
    color: #333;
}
.page-description {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
    color: #6c757d;
    line-height: 1.6;
}
.issue-category {
    background: white;
    border-radius: 12px;
    margin-bottom: 50px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}
.category-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    flex-wrap: wrap;
    border-bottom: 2px solid #2a5bd7;
    padding-bottom: 15px;
    margin-bottom: 20px;
}
.category-header h2 {
    font-size: 1.8rem;
    margin: 0;
    color: #333;
}
.category-link {
    color: #2a5bd7;
    text-decoration: none;
    font-weight: 500;
}
.category-link:hover {
    text-decoration: underline;
}
.category-description {
    margin-bottom: 30px;
    padding: 15px;
    background: #f0f5ff;
    border-radius: 8px;
    color: #2a5bd7;
    font-size: 1rem;
    line-height: 1.5;
}
.issues-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 25px;
}

.issue-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    border-color: #2a5bd7;
}



.issue-card:hover .issue-link {
    opacity: 1;
}
.seo-bottom-text {
    margin-top: 60px;
    padding: 30px;
    background: #2a5bd7;
    color: white;
    border-radius: 12px;
    text-align: center;
}
.seo-bottom-text h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}
@media (max-width: 768px) {
    .issue-category { padding: 20px; }
    .category-header h2 { font-size: 1.4rem; }
    .issues-grid { grid-template-columns: 1fr; }
}