/* V2 Wide Text Styles */

.v2-wide-text-section {
    width: 100%;
    margin-bottom: 64px;
    padding: 0;
}

.v2-wide-text-title {
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 24px;
    line-height: 1.3;
    text-align: left;
}

.v2-wide-text-title a {
    color: #22C55E;
    text-decoration: none;
}

.v2-wide-text-title a:hover {
    color: #3feb21;
    text-decoration: underline;
}

.v2-wide-text-content {
    font-size: clamp(0.8rem, 1.76vw, 1.0rem);
    line-height: 1.6;
    color: #ffffff;
    margin-bottom: 32px;
}

.v2-wide-text-content p {
    margin-bottom: 16px;
}

.v2-wide-text-content p:last-child {
    margin-bottom: 0;
}

.v2-wide-text-content ul {
    margin-left: 16px;
    margin-bottom: 16px;
}

.v2-wide-text-content ul:last-child {
    margin-bottom: 0;
}

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

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

.v2-wide-text-content a:hover::after {
    width: 100%;
}

.v2-wide-text-image {
    width: 100%;
    margin-bottom: 32px;
}

.v2-wide-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 9.6px;
}

.v2-wide-text-list {
    list-style: none;
    padding: 0;
    margin: 0;
    margin-left: 8px;
}

.v2-wide-text-list-item {
    font-size: clamp(0.64rem, 1.44vw, 0.8rem);
    line-height: 1.5;
    color: #ffffff;
    padding: 8px 0;
    padding-left: 24px;
    position: relative;
}

.v2-wide-text-list-item::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 8px;
    color: #ffffff;
    font-weight: bold;
    font-size: 1.1em;
}

.v2-wide-text-list-item a {
    color: #22C55E;
    text-decoration: underline;
}

.v2-wide-text-list-item a:hover {
    color: #3feb21;
    text-decoration: none;
}

.v2-wide-text-button-container {
    display: flex;
    justify-content: flex-end;
    margin-top: 32px;
}

/* Responsive styles */
@media (max-width: 768px) {
    .v2-wide-text-section {
        padding: 0;
        margin-bottom: 48px;
    }


    .v2-wide-text-list-item {
        padding: 8px 0;
        padding-left: 20px;
    }

    .v2-wide-text-list-item::before {
        top: 8px;
    }
}
