.fdg-public {
    --fdg-bg: linear-gradient(135deg, #f4f8f6 0%, #ffffff 100%);
    --fdg-border: #d9e4db;
    --fdg-primary: #1f6f5d;
    --fdg-primary-dark: #184f43;
    --fdg-accent: #f3b23a;
    --fdg-text: #183129;
    --fdg-muted: #597166;
    background: var(--fdg-bg);
    border: 1px solid var(--fdg-border);
    border-radius: 28px;
    color: var(--fdg-text);
    margin: 24px 0;
    overflow: hidden;
    padding: 24px;
}

.fdg-heading {
    margin-bottom: 20px;
}

.fdg-kicker {
    color: var(--fdg-primary);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.16em;
    margin: 0 0 8px;
    text-transform: uppercase;
}

.fdg-heading h2 {
    font-size: clamp(20px, 2.8vw, 29px);
    line-height: 1.05;
    margin: 0 0 8px;
}

.fdg-heading p,
.fdg-address,
.fdg-licensed,
.fdg-description,
.fdg-empty-state p {
    color: var(--fdg-muted);
}

.fdg-cards {
    display: grid;
    gap: 24px;
}

.fdg-card {
    background: #fff;
    border: 1px solid rgba(24, 49, 41, 0.08);
    border-radius: 24px;
    box-shadow: 0 20px 40px rgba(24, 49, 41, 0.08);
    overflow: hidden;
}

.fdg-hero {
    background: linear-gradient(135deg, #d9f0e8, #b8d9cf);
    display: block;
    height: 220px;
    object-fit: cover;
    width: 100%;
}

.fdg-hero-placeholder {
    position: relative;
}

.fdg-hero-placeholder::after {
    background: radial-gradient(circle at center, rgba(255, 255, 255, 0.75) 0, rgba(255, 255, 255, 0) 60%);
    content: '';
    inset: 0;
    position: absolute;
}

.fdg-card-body {
    padding: 22px;
}

.fdg-card-top {
    align-items: flex-start;
    display: flex;
    gap: 18px;
    justify-content: space-between;
}

.fdg-branding {
    align-items: center;
    display: flex;
    gap: 14px;
}

.fdg-logo {
    background: #f7faf8;
    border: 1px solid rgba(24, 49, 41, 0.08);
    border-radius: 18px;
    display: block;
    height: 72px;
    object-fit: cover;
    width: 72px;
}

.fdg-branding h3 {
    font-size: 24px;
    margin: 0;
}

.fdg-licensed,
.fdg-address {
    font-size: 15px;
    margin: 8px 0 0;
}

.fdg-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: flex-start;
    margin-top: 16px;
}

.fdg-action-button {
    align-items: center;
    background: var(--fdg-primary);
    border: 0;
    border-radius: 999px;
    color: #fff;
    cursor: pointer;
    display: inline-flex;
    font-size: 12px;
    font-weight: 700;
    gap: 8px;
    justify-content: center;
    line-height: 1;
    min-height: 38px;
    padding: 10px 14px;
    text-decoration: none;
    transition: transform 160ms ease, background-color 160ms ease;
}

.fdg-action-button:hover,
.fdg-action-button:focus {
    background: var(--fdg-primary-dark);
    color: #fff;
    transform: translateY(-1px);
}


.fdg-description {
    margin-top: 16px;
}

.fdg-empty-state {
    background: #f8faf9;
    border: 1px dashed #c4d6cb;
    border-radius: 18px;
    padding: 24px;
}

@media (max-width: 782px) {
    .fdg-public {
        border-radius: 20px;
        padding: 18px;
    }

    .fdg-card-top {
        flex-direction: column;
    }

    .fdg-hero {
        height: 180px;
    }
}