.dl-grid {
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    width: 100%;
}

.dl-card {
    background-color: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding: 24px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.dl-name {
    margin: 0 0 12px 0;
    font-size: 1.25rem;
    font-weight: 600;
    color: #1f2937;
    line-height: 1.4;
}

.dl-address {
    margin-bottom: 8px;
    font-size: 0.95rem;
    color: #4b5563;
}

.dl-phone {
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.dl-phone-link {
    color: #2563eb;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
}

.dl-phone-link:hover {
    color: #1d4ed8;
    text-decoration: underline;
}

.dl-action {
    margin-top: auto;
}

.dl-btn {
    display: inline-block;
    width: 100%;
    text-align: center;
    background-color: #1e3a8a;
    color: #ffffff;
    padding: 10px 16px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.dl-btn:hover {
    background-color: #1d4ed8;
    color: #ffffff;
}

@media (max-width: 1024px) {
    .dl-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 767px) {
    .dl-grid {
        grid-template-columns: 1fr;
    }
}
