.ec-96f8c0ca-container {
    width: 100%;
}

.ec-96f8c0ca-header {
    text-align: left;
    margin-bottom: 40px;
}

.ec-96f8c0ca-main-title {
    color: #001f3f;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.ec-96f8c0ca-subtitle {
    color: #4a5d73;
    font-size: 1.2rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 30px;
}

.ec-96f8c0ca-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.ec-96f8c0ca-card {
    background-color: #fff;
    border-radius: 12px;
    border: 1px solid #4a7c9d;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.ec-96f8c0ca-img-wrapper {
    height: 350px;
    overflow: hidden;
    padding: 2px 2px 0 2px;
}

.ec-96f8c0ca-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

.ec-96f8c0ca-card-content {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.ec-96f8c0ca-card-title {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1.1rem;
    color: #4a5d73;
    margin-bottom: 8px;
    font-weight: 500;
}

.ec-96f8c0ca-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    display: inline-block;
    background: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.8), transparent);
    box-shadow: inset -2px -2px 4px rgba(0,0,0,0.2);
}

.ec-96f8c0ca-desc {
    color: #7a7a7a;
    font-size: 0.85rem;
    margin-bottom: 20px;
    flex-grow: 1;
}

.ec-96f8c0ca-btn {
    display: inline-block;
    background-color: #FFD700; /* Yellow */
    color: #000;
    padding: 8px 16px;
    border-radius: 20px;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.85rem;
    text-align: center;
    align-self: flex-start;
    transition: background-color 0.3s;
}

.ec-96f8c0ca-btn:hover {
    background-color: #FFC107; /* Darker Yellow on hover */
}