/* public/css/matrix-gpu.css */

/* === GPU CARD === */
.gpu-card {
    background: #fff;
    border: 2px dashed #dee2e6; 
    border-radius: 12px; 
    height: 100%;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    position: relative;
    /* Эффекты наведения удалены по заданию */
}

/* === Шапка карточки === */
.gpu-card-body {
    padding: 24px; /* Увеличил отступы для широких карточек */
    background-color: #fff;
    border-bottom: 1px dashed #dee2e6;
}

.gpu-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: #0b163f;
    margin-bottom: 5px;
}

.gpu-subtitle {
    font-size: 0.95rem;
    color: #6c757d;
    margin: 0;
}

.gpu-price-amount {
    font-size: 1.85rem;
    font-weight: 800;
    color: #0b163f;
    line-height: 1;
    margin-top: 15px;
}

.gpu-price-period {
    font-size: 0.9rem;
    color: #6c757d;
    font-weight: 400;
}

.gpu-price-setup {
    font-size: 0.8rem;
    color: #e67e22;
    margin-top: 5px;
}

/* === Список характеристик === */
.gpu-features-list {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    background: #fff;
}

.gpu-feature-row {
    display: flex;
    align-items: stretch; 
    border-bottom: 1px solid #dee2e6;
    min-height: 48px; 
}

.gpu-icon-box {
    width: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-right: 1px solid #dee2e6;
    color: #2f57a4; /* Твой синий цвет */
    font-size: 1.1rem;
    background-color: #f8f9fa;
    flex-shrink: 0;
}

.gpu-text-box {
    padding: 10px 15px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex-grow: 1;
}

.gpu-label {
    font-weight: 700;
    font-size: 0.95rem;
    color: #0b163f;
    line-height: 1.2;
    word-break: break-word; /* Чтобы длинные названия GPU переносились */
}

.gpu-desc {
    font-size: 0.75rem;
    color: #6c757d;
    margin: 0;
    line-height: 1.1;
}

/* === Футер === */
.gpu-card-footer {
    padding: 24px;
    margin-top: auto;
    background: #fff;
}

.gpu-btn {
    display: block;
    width: 100%;
    background-color: #34495E; 
    color: #fff;
    font-weight: 600;
    text-align: center;
    padding: 14px;
    text-decoration: none;
    border-radius: 6px; 
    transition: background-color 0.2s;
}

.gpu-btn:hover {
    background-color: #F5AD1B; /* Твой оранжевый ховер */
    color: #fff;
}

/* Пагинация стили */
.gpu-pagination-wrapper {
    margin-top: 40px;
    display: flex;
    justify-content: center;
}

/* Адаптивность */
@media (max-width: 1200px) {
    .gpu-title { font-size: 1.2rem; }
}

@media (max-width: 768px) {
    .gpu-card { margin-bottom: 30px; }
}