/**
 * WW Trusted Partners — Directory Styles
 * Scoped under .wwtp-styled to prevent bleed into host themes.
 * When "Inherit" mode is selected, this file is not loaded.
 */

/* ── Grid ─────────────────────────────────────────────── */
.wwtp-styled .wwtp-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 20px;
    margin: 0;
    padding: 0;
}

/* ── Card ─────────────────────────────────────────────── */
.wwtp-styled .wwtp-card {
    display: flex;
    flex-direction: column;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    overflow: hidden;
    transition: box-shadow 0.15s ease;
    position: relative;
}
.wwtp-styled .wwtp-card:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

/* ── Headshot ─────────────────────────────────────────── */
.wwtp-styled .wwtp-card-headshot {
    text-align: center;
    padding: 14px 14px 0;
}
.wwtp-styled .wwtp-card-headshot img {
    max-width: 150px;
    max-height: 210px;
    border-radius: 6px;
    object-fit: cover;
}

/* ── Body ─────────────────────────────────────────────── */
.wwtp-styled .wwtp-card-body {
    padding: 14px 16px 8px;
    flex: 1;
}
.wwtp-styled .wwtp-card-name {
    margin: 0 0 4px;
    font-size: 1.05rem;
    font-weight: 700;
    color: #1f2937;
    line-height: 1.3;
}
.wwtp-styled .wwtp-card-category {
    margin: 0 0 2px;
    font-size: .82rem;
    color: #6b7280;
    font-style: italic;
}
.wwtp-styled .wwtp-card-company {
    margin: 0 0 8px;
    font-size: .88rem;
    color: #374151;
    font-weight: 600;
}
.wwtp-styled .wwtp-card-detail {
    margin: 0 0 4px;
    font-size: .82rem;
    color: #4b5563;
}
.wwtp-styled .wwtp-card-detail a {
    color: #2563eb;
    text-decoration: none;
}
.wwtp-styled .wwtp-card-detail a:hover {
    text-decoration: underline;
}
.wwtp-styled .wwtp-icon {
    display: inline-block;
    font-size: .7rem;
    font-weight: 700;
    color: #9ca3af;
    text-transform: uppercase;
    min-width: 32px;
    letter-spacing: .3px;
}
.wwtp-styled .wwtp-card-blurb {
    margin: 8px 0 4px;
    font-size: .82rem;
    color: #6b7280;
    line-height: 1.4;
}
.wwtp-styled .wwtp-card-vcard {
    margin-top: 6px;
}
.wwtp-styled .wwtp-icon-svg {
    width: 15px;
    height: 15px;
    display: inline-block;
    vertical-align: -2px;
    color: #6b7280;
    margin-right: 4px;
}

/* ── Logo ─────────────────────────────────────────────── */
.wwtp-styled .wwtp-card-logo {
    text-align: center;
    padding: 8px 16px 14px;
}
.wwtp-styled .wwtp-card-logo img {
    max-width: 150px;
    max-height: 150px;
    object-fit: contain;
}

/* ── Inherit Mode (semantic classes for theme styling) ── */
.wwtp-inherit .wwtp-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5em;
}
.wwtp-inherit .wwtp-card {
    flex: 1 1 280px;
    max-width: 400px;
}
.wwtp-inherit .wwtp-card-headshot img,
.wwtp-inherit .wwtp-card-logo img {
    max-width: 100%;
    height: auto;
}

/* ── Responsive ───────────────────────────────────────── */
@media (max-width: 600px) {
    .wwtp-styled .wwtp-grid {
        grid-template-columns: 1fr;
    }
}
