/* sitemap.css */
.page-main-sitemap {
    background-color: #fff;
    padding-left: 20px;
    padding-right: 20px;
    padding-bottom: 100px;
}

.sitemap-container {
    max-width: 1200px;
    margin: 0 auto;
    margin-top: 3rem;
}

.sitemap-title {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: #000;
    text-align: center;
}

.sitemap-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.sitemap-col {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.sitemap-item {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.sm-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1rem 1rem 1.5rem;
    background-color: #fff;
    border: 1px solid #ddd;
    text-decoration: none;
    color: #333;
    font-weight: 700;
    font-size: 1.2rem;
    transition: background-color 0.2s, box-shadow 0.2s;
    border-left: 5px solid #2878a8;
    /* Default blue-ish border */
}

/* Colors for left border based on matching the screenshot's variety */
.sm-card--col1 {
    border-left-color: #d1121d;
}

.sm-card--col2 {
    border-left-color: #d1121d;
}

.sm-card--col3 {
    border-left-color: #d1121d;
}

.sm-card--col4 {
    border-left-color: #d1121d;
}

.sm-card--col5 {
    border-left-color: #d1121d;
}

.sm-card:hover {
    background-color: #f9f9f9;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
    color: #000;
}

.sm-card__arrow {
    width: 24px;
    height: 24px;
    color: #444;
}

.sitemap-sub {
    padding-left: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.sm-sub-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 1rem;
    background-color: #fff;
    border: 1px solid #ebebeb;
    text-decoration: none;
    color: #444;
    font-weight: 500;
    font-size: 1rem;
    transition: background-color 0.2s, box-shadow 0.2s;
    border-left: 3px solid #d1121d;
    border-radius: 4px;
}

.sm-sub-card:hover {
    background-color: #fcfcfc;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.05);
    color: #000;
}

.sm-sub-card__arrow {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    color: #666;
}

@media (max-width: 900px) {
    .sitemap-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}
@media (max-width: 767px) {
    .sitemap-container {
        margin-top: 2.5rem;
    }
}
