.sep-grid-wrap {
    margin: 2em 0;
}

.sep-grid-heading {
    margin-bottom: 1em;
}

.sep-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 1em;
}

.sep-card {
    display: block;
    padding: 1.25em;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    text-decoration: none;
    color: inherit;
    background: #fff;
    transition: box-shadow 0.15s ease, transform 0.15s ease;
}

.sep-card:hover {
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
    transform: translateY(-2px);
}

.sep-card-title {
    margin: 0 0 0.4em;
    font-size: 1.05em;
}

.sep-card-desc {
    margin: 0;
    font-size: 0.9em;
    color: #555;
}

.sep-category-guides {
    margin: 0 0 2em;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 1em;
}

.sep-guide-card {
    display: block;
    padding: 1.25em;
    border: 1px solid #2271b1;
    border-radius: 10px;
    text-decoration: none;
    background: #f0f6fc;
    transition: box-shadow 0.15s ease, transform 0.15s ease;
}

.sep-guide-card:hover {
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
    transform: translateY(-2px);
}

.sep-guide-label {
    display: inline-block;
    font-size: 0.75em;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #2271b1;
    margin-bottom: 0.4em;
}

.sep-guide-title {
    margin: 0;
    font-size: 1.1em;
    color: #1d2327;
}
