@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@400;600;700;800&display=swap');

.sol-res-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    font-family: 'Nunito', sans-serif;
}
.sol-res-card {
    background: #fff;
    border: 1px solid #e8e8f0;
    border-radius: 10px;
    overflow: hidden;
    transition: border-color 0.15s;
}
.sol-res-card:hover {
    border-color: #022493;
}
.sol-res-thumb {
    width: 100%;
    aspect-ratio: 16/9;
    background-color: #f0f3fc;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    cursor: pointer;
    box-shadow: 0 8px 32px rgba(2,36,147,0.12);
}
.sol-res-thumb.is-video {
    background: linear-gradient(135deg, #011a6e, #022493);
}
.sol-res-thumb.is-pdf {
    background: #f0f3fc;
}
.sol-res-thumb.is-pdf-doc {
    background-size: contain;
    background-repeat: no-repeat;
    background-color: #f5f6fa;
}
.sol-res-play {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.15);
    border: 1.5px solid rgba(255,255,255,0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.sol-res-play-in {
    width: 30px;
    height: 30px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.sol-res-body {
    padding: 14px 16px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.sol-res-tag {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #9090b0;
    font-family: 'Nunito', sans-serif;
}
.sol-res-title {
    font-size: 14px;
    font-weight: 700;
    line-height: 1.4;
    font-family: 'Nunito', sans-serif;
}
.sol-res-title a {
    color: #1a1a2e;
    text-decoration: none;
}
.sol-res-title a:hover {
    color: #022493;
}
.sol-res-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 10px;
    border-top: 1px solid #f0f2f8;
    gap: 8px;
}
.sol-res-btn-outline {
    font-size: 12px;
    font-weight: 600;
    color: #022493;
    text-decoration: none;
    border: 1.5px solid #022493;
    padding: 5px 12px;
    border-radius: 6px;
    font-family: 'Nunito', sans-serif;
    transition: background 0.15s, color 0.15s;
}
.sol-res-btn-outline:hover {
    background: #022493;
    color: #fff;
}
.sol-res-btn {
    font-size: 12px;
    font-weight: 700;
    color: #022493;
    text-decoration: none;
    font-family: 'Nunito', sans-serif;
}
.sol-res-btn:hover {
    color: #011a6e;
    text-decoration: underline;
}

@media (max-width: 768px) {
    .sol-res-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
    .sol-res-grid { grid-template-columns: 1fr; }
}
