/* V2 List Component Styles */

.v2-list-section {
    width: 100%;
    margin-bottom: 48px;
    padding: 32px 60px 48px 40px;
    background-color: #ffffff;
    border: 3px solid #040D81;
    border-radius: 12px;
}

.v2-list-item {
    margin-bottom: 32px;
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.v2-list-item:last-child {
    margin-bottom: 0;
}

.v2-list-item-icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    margin-top: 4px;
    color: #22C55E;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.v2-list-item-spacer {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
}

.v2-list-item-content {
    flex: 1;
}

.v2-list-item-title {
    font-size: clamp(1.2rem, 2.5vw, 1.6rem);
    font-weight: 600;
    color: #1F2937;
    margin-bottom: 8px;
    line-height: 1.3;
}

.v2-list-item-text {
    font-size: clamp(0.8rem, 1.76vw, 1.0rem);
    line-height: 1.6;
    color: #4B5563;
    margin-bottom: 0;
}

.v2-list-item-text p {
    margin-bottom: 12px;
}

.v2-list-item-text p:last-child {
    margin-bottom: 0;
}

.v2-list-item-text a {
    color: #22C55E;
    text-decoration: none;
    position: relative;
    font-weight: 500;
}

.v2-list-item-text a::after {
    content: '';
    position: absolute;
    bottom: 1px;
    left: 0;
    width: 0;
    height: 2px;
    background: #22C55E;
    transition: width 0.25s ease;
}

.v2-list-item-text a:hover::after {
    width: 100%;
}

.v2-list-item-subitems {
    list-style: none;
    padding: 0;
    margin: 0;
    margin-top: 8px;
}

.v2-list-item-subitem {
    font-size: clamp(0.8rem, 1.76vw, 1.0rem);
    line-height: 1.6;
    color: #4B5563;
    margin-bottom: 8px;
    padding-left: 28px;
    position: relative;
}

.v2-list-item-subitem::before {
    content: '•';
    position: absolute;
    left: 12px;
    top: 0;
    color: #040D81;
    font-weight: bold;
    font-size: 1.2em;
}

.v2-list-item-subitem:last-child {
    margin-bottom: 0;
}

/* Responsive styles */
@media (max-width: 768px) {
    .v2-list-section {
        padding: 24px 36px 36px 24px;
        margin-bottom: 40px;
    }

    .v2-list-item {
        margin-bottom: 24px;
        gap: 12px;
    }

    .v2-list-item-icon {
        width: 20px;
        height: 20px;
        font-size: 18px;
        margin-top: 2px;
    }
}
