.provider-cards-container {
    background-color: #fff;
    color: #000;
    font-family: 'Inter', sans-serif;
}

.provider-card {
    border-bottom: 1px solid #e5e5e5;
    padding: 2rem 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
	
    flex-wrap: wrap;
}

.provider-card.flex-column {
    flex-direction: column;
    align-items: center;
}

.provider-card.flex-column .provider-info {
    margin-right: 0;
    margin-bottom: 1.5rem;
    text-align: center;
}

.provider-info {
    flex: 1;
    margin-right: 2rem;
}

.provider-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #000;
    margin-bottom: 0.5rem;
}

.provider-date {
    font-size: 0.9rem;
    color: #555;
    margin-bottom: 0.75rem;
}

.provider-description {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #333;
    margin-bottom: 0.75rem;
}

.provider-btn {
    background-color: #0b7d77;
    border: none;
    color: #fff;
    padding: 0.5rem 1.25rem;
    border-radius: 6px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

.provider-btn:hover {
    background-color: #096963;
    color: #fff;
    text-decoration: none;
}

.provider-logo {
    margin-bottom: 0.5rem;
}

.provider-logo img {
    width: 140px;
    height: auto;
    object-fit: contain;
}

a.read-link {
    display: inline-block;
    color: #007bff;
    font-size: 0.9rem;
    margin-top: 0.5rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

a.read-link:hover {
    text-decoration: underline;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .provider-card {
        flex-direction: column;
        align-items: center;
    }

    .provider-info {
        margin-right: 0;
        margin-bottom: 1.5rem;
        text-align: center;
    }

    .provider-title {
        font-size: 1.25rem;
    }
}
