
/* Entertainment News Theme Remake */

/* Hero Image */
.entertainment-hero-container {
    margin-bottom: 30px;
    overflow: hidden;
    border-radius: 8px;
}
.entertainment-hero-image {
    width: 100%;
    height: auto;
    max-height: 600px;
    object-fit: cover;
    display: block;
}

/* Typography & Meta */
.single .entry-title {
    font-size: 2.5rem; /* Large impact heading */
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 15px;
    letter-spacing: -0.5px;
}
.entertainment-meta {
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 2rem;
    border-bottom: 1px solid #eee;
    padding-bottom: 1.5rem;
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
}
.entertainment-meta span {
    display: inline-flex;
    align-items: center;
}
.entertainment-meta a {
    color: #222;
    text-decoration: none;
    font-weight: 600;
}
.entertainment-meta a:hover {
    text-decoration: underline;
    color: #0073aa; /* WordPress Blue or Theme accent */
}

/* Content Readability */
.single .entry-content {
    font-size: 1.2rem; /* approx 19px */
    line-height: 1.8;
    color: #2c2c2c;
    max-width: 800px; /* Optimal reading width */
    margin-left: auto;
    margin-right: auto;
}
.single .entry-content p {
    margin-bottom: 1.5em;
}

/* Share Buttons */
.entertainment-share {
    margin: 4rem auto;
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 12px;
    text-align: center;
    max-width: 800px;
    border: 1px solid #ececec;
}
.entertainment-share h3 {
    margin-bottom: 1.5rem;
    font-size: 1.4rem;
    font-weight: 700;
}
.entertainment-share a {
    display: inline-block;
    padding: 12px 24px;
    margin: 5px;
    text-decoration: none;
    color: white;
    border-radius: 50px; /* Pill shape */
    font-weight: 600;
    transition: all 0.2s ease;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}
.entertainment-share a:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0,0,0,0.15);
}
.entertainment-share a[href*="facebook"] { background: #1877f2; }
.entertainment-share a[href*="twitter"] { background: #1da1f2; }
.entertainment-share a[href*="whatsapp"] { background: #25d366; }

/* Author Box */
.entertainment-author-box {
    display: flex;
    gap: 25px;
    padding: 2.5rem;
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    margin: 3rem auto;
    max-width: 800px;
    align-items: start;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}
.author-avatar img {
    border-radius: 50%;
    width: 80px;
    height: 80px;
}
.author-info {
    flex: 1;
}
.author-title {
    margin-top: 0;
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
    font-weight: 700;
}
.author-bio {
    font-size: 1rem;
    line-height: 1.6;
    color: #555;
    margin-bottom: 0;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .single .entry-title {
        font-size: 2rem;
    }
    .entertainment-hero-image {
        max-height: 300px; /* Smaller hero on mobile */
    }
    .entertainment-meta {
        flex-direction: column;
        gap: 10px;
        padding-bottom: 1rem;
    }
    .entertainment-author-box {
        flex-direction: column;
        text-align: center;
        align-items: center;
        padding: 2rem;
    }
    .single .entry-content {
        font-size: 1.1rem;
    }
    .entertainment-share a {
        display: block; /* Stack buttons on very small screens? Or keep inline-block but smaller padding */
        width: 100%;
        margin: 10px 0;
        box-sizing: border-box;
    }
}
