/* Base container for the fun fact feed */
.ffc-fun-fact-feed {
    margin: 20px auto;
    max-width: 1200px;
    padding: 0 15px;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

/* Latest Fun Fact container (appended to blog posts) */
.ffc-latest-fun-fact {
    margin: 30px 0;
}

/* Fact Card styling with yellow background */
.ffc-fact-card {
    background-color: #FFF9E5;  /* Light pale yellow */
    border: 1px solid #FDEBB0;  /* Light yellow border */
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    width: 300px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease;
}

.ffc-fact-card:hover {
    transform: translateY(-3px);
}

/* Card header/title styling in bright yellow */
.ffc-fact-card .card-title {
    background: #FDCB02;         /* Bright yellow header */
    color: #333333;              /* Dark text for contrast */
    padding: 12px;
    text-align: center;
    font-size: 1.25em;
    font-weight: bold;
    margin: 0;
}

/* Featured image styling */
.ffc-fact-card .ffc-featured-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Card content styling */
.ffc-fact-card .card-content {
    padding: 15px;
    flex-grow: 1;
    font-size: 1em;
    line-height: 1.5;
    color: #333333;
}

/* Social Sharing Buttons styling */
.ffc-social-share {
    text-align: center;
    margin: 10px 0;
}

.ffc-social-share a {
    display: inline-block;
    margin: 0 5px;
    padding: 8px 15px;
    background: #2C3E50;  /* Dark navy for contrast */
    color: #ffffff;
    text-decoration: none;
    border-radius: 4px;
    transition: background 0.3s ease;
    font-size: 0.9em;
}

.ffc-social-share a:hover {
    background: #34495E;  /* Slightly lighter navy on hover */
}

/* Call-To-Action (CTA) Button styling */
.ffc-fact-card .cta-button {
    background: #FDCB02;
    color: #333333;
    text-align: center;
    padding: 10px;
    text-decoration: none;
    display: block;
    border-top: 1px solid #FDEBB0;
    transition: background 0.3s ease;
}

.ffc-fact-card .cta-button:hover {
    background: #F1C40F;  /* Slightly darker yellow on hover */
}

/* Pagination styling */
.ffc-pagination {
    text-align: center;
    width: 100%;
    margin-top: 20px;
}

.ffc-pagination ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

/* Increase font size for single page content */
.entry-content {
    font-size: 1.1em;  /* Larger font for easier reading */
    line-height: 1.6;
}

/* Fun Fact Widget styling for Sidebar */
.ffc-widget {
    background-color: #FFF9E5;
    border: 1px solid #FDEBB0;
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 20px;
    text-align: center;
}

.ffc-widget h3 {
    margin: 0 0 10px;
    font-size: 1.25em;
    color: #FDCB02;
}

.ffc-widget p {
    font-size: 1em;
    line-height: 1.5;
    color: #333333;
}

.ffc-widget a {
    display: inline-block;
    margin-top: 10px;
    padding: 8px 16px;
    background: #F26B38;
    color: #ffffff;
    text-decoration: none;
    border-radius: 4px;
    transition: background 0.3s ease;
}

.ffc-widget a:hover {
    background: #E17055;
}

/* Back to List Button styling */
.ffc-back-button a {
    display: inline-block;
    margin-top: 20px;
    padding: 12px 20px;
    background: #F26B38;  /* Use same accent color as share buttons */
    color: #ffffff;
    text-decoration: none;
    border-radius: 4px;
    transition: background 0.3s ease;
}

.ffc-back-button a:hover {
    background: #E17055;
}
/* Example Share Buttons styling */


.share-buttons h3 {
    margin-bottom: 10px;
    font-size: 1.2em;
    color: #333;
}

.share-button {
    display: inline-block;
    margin: 0 5px;
    padding: 8px 15px;
    background: #2C3E50; /* Dark navy for contrast */
    color: #ffffff;
    text-decoration: none;
    border-radius: 4px;
    transition: background 0.3s ease;
    font-size: 0.9em;
}

.share-button:hover {
    background: #34495E; /* Slightly lighter navy on hover */
}
