.card-widget-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    width: 100%;
    padding-top: 30px;
    justify-content: center;
}
.card-wrapper {
    background: #ffffff;
    border-radius: 30px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    position: relative;
    min-width: 225px;
    flex: 1;
    max-width: 400px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.5);
}
.card-wrapper:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}
.card-background-wrapper {
    width: 100%;
    position: absolute;
    overflow: hidden;
}
.image-container {
    width: 100%;
    height: auto;
}
.image-container img {
    width: 100%;
    height: 235px !important;
    display: block;
}
.card-subhead {
    z-index: 1;
    position: relative;
}
.card-subhead h3 {
    font-size: clamp(12px, 1.4vw, 15px);
    font-weight: 600;
    color: white;
    padding: 0px 8px;
    text-align: center;
    margin: 0;
    height: 39px;
    display: grid;
    align-items: center;
    text-align: center;
    letter-spacing: 0.5px;
    padding-top: 7px;
}
.card-header {
    padding: 8px 5px;
    z-index: 1;
    position: relative;
}
.card-header .text-container {
    height: 60px;
}
.card-content-wrapper {
    height: 235px;
}
.card-header h2 {
    font-size: 55px;
    font-weight: 700;
    color: white;
    text-align: center;
    line-height: 0;
    display: list-item;
    height: 0;
    margin: 0;
    font-family: "Open Sans", sans-serif;
    line-height: 60px;
}

.see-more-list {
    padding: 0px 33px 30px;
}

.card-wrapper {
    min-width: 260px
}
.card-header h2.smaller {
    font-size: 45px;
}
#cwt-live-preview-container .card-button-wrapper {
    max-width: calc(100% - 60px);
    padding: 0;
}
#cwt-live-preview-container .list-icon {
    top: 12px;
    position: relative;
}
#cwt-live-preview-container .card-button-wrapper .card-button {
    margin-left: -12px;
}
#cwt-live-preview-container .card-header {
    padding: 0px !important;
    padding-top: 10px !important;
}
#cwt-live-preview-container .card-header h2 {
    font-size: 60px;
    font-weight: 700;
    color: white;
    text-align: center;
    padding: 0px !important;
    line-height: 60px !important;
    height: 60px;
    margin: 0;
}
#cwt-live-preview-container .card-header h2.smaller {
    font-size: 45px;
}

.card-details {
    padding: 0px 8px 5px;
    z-index: 1;
    color: white;
    text-align: center;
    position: relative;
}
.card-details p {
    font-size: 16px;
    color: white;
    font-weight: 500;
    margin: 0;
    line-height: 1.5;
}
.card-button-container {
    padding: 5px;
    text-align: center;
}
.card-button-wrapper {
    display: inline-block;
    width: 100%;
    padding: 0 30px;
}
.card-button {
    display: grid;
    align-items: center;
    gap: 8px;
    padding: 12px;
    background-color: #FF8300;
    color: #ffffff;
    border: 1px solid #FF8300;
    margin: 0px auto;
    text-decoration: none;
    border-radius: 10px;
    font-weight: 600;
    font-size: 16px;
    width: 100%;
    transition: background-color 0.3s ease;
}
.card-button:hover {
    background-color: white;
    color: #FF8300;
}
.external-link-icon {
    width: 12px;
    height: 12px;
}
.card-extend {
    padding: 16px 20px;
    cursor: pointer;
    text-align: center;
    user-select: none;
}
.card-extend:hover {
    background-color: #f5f5f5;
}
.see-more-toggle {
    color: #000000;
    font-weight: 600;
    font-size: 14px;
    display: inline-block;
    transition: color 0.3s ease;
}
.card-extend:hover .see-more-toggle {
    color: #0066cc;
}
.see-more-list {
    padding: 0 20px 20px;
}
.list {
    list-style: none;
    margin: 0;
    padding: 0;
    width: 100%;
}
.list-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 8px 0 0;
}
.list-icon {
    flex-shrink: 0;
    width: 16px;
    height: 16px;
    margin-top: -10px;
    color: #28a745;
}
.list-icon svg {
    width: 100%;
    height: 100%;
    fill: currentColor;
}
.list-text {
    font-size: 12px;
    color: #333;
    line-height: 1.5;
}
@media screen and (max-width: 768px) {
    .card-header h2 {
        font-size: 60px;
    }
    .card-subhead h3 {
        font-size: 15px;
    }
}
/* Responsive */
@media (max-width: 470px) {
    .card-widget-container {
        flex-direction: column;
    }
    .card-wrapper {
        max-width: 100%;
    }
}
