/* Premium single pet fact detail styles */
.fact-hero {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    padding: 6rem 1rem;
    color: white;
    text-align: center;
    border-bottom-left-radius: 4rem;
    border-bottom-right-radius: 4rem;
    margin-bottom: -4rem;
    position: relative;
    z-index: 1;
}

.fact-hero-inner {
    max-width: 900px;
    margin: 0 auto;
}

.fact-hero-badge-top {
    margin: 0 auto 1.5rem;
    width: fit-content;
    background: rgba(255, 255, 255, 0.15);
}

.fact-main-hook {
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    font-weight: 800;
    line-height: 1.3;
    margin-bottom: 2rem;
    text-wrap: balance;
}

.fact-hero-badges {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 1.5rem;
}

.fact-hero-badge {
    background: rgba(255, 255, 255, 0.2);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.fact-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 1.5rem 5rem;
    position: relative;
    z-index: 2;
}

.fact-content-card {
    background: white;
    border-radius: 2rem;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    display: grid;
    grid-template-columns: 1fr;
}

@media (min-width: 992px) {
    .fact-content-card {
        grid-template-columns: 450px 1fr;
    }
}

.fact-visual {
    background: var(--bg-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 300px;
}

.fact-visual-placeholder {
    font-size: 5rem;
    opacity: 0.2;
}

.fact-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.fact-body {
    padding: 3rem;
}

.fact-details {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--text);
    margin-bottom: 2rem;
}

.fact-details h2 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 1.5rem;
}

.fact-share {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border);
}

.share-label {
    font-weight: 700;
    color: var(--text-lighter);
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 1px;
}

.fact-breed-meta {
    background: var(--bg-secondary);
    border-radius: 1.5rem;
    padding: 1.5rem;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    border: 1px solid var(--border);
}

.breed-icon {
    width: 50px;
    height: 50px;
    background: white;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.5rem;
    box-shadow: var(--shadow-sm);
}

.breed-info h4 {
    margin: 0;
    font-size: 1.1rem;
    color: var(--text);
}

.breed-info a {
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
}

.icon-sm {
    font-size: 0.8rem;
}

.btn-share {
    font-size: 1.25rem;
    transition: transform 0.2s;
}

.btn-share:hover {
    transform: scale(1.2);
}

.share-fb {
    color: #1877f2;
}

.share-tw {
    color: #1da1f2;
}

.share-wa {
    color: #25d366;
}

.badge-fit {
    width: fit-content;
}

.learn-more-label {
    font-size: 0.8rem;
    color: var(--primary);
    font-weight: 700;
}

.related-facts-section {
    margin-top: 4rem;
}

.section-title {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.mini-fact-card {
    background: white;
    border-radius: 1.5rem;
    padding: 1.5rem;
    border: 1px solid var(--border);
    transition: all 0.3s ease;
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.mini-fact-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary);
}

.mini-fact-text {
    font-weight: 700;
    line-height: 1.4;
    color: var(--text);
    flex: 1;
}