/* RECOMMENDED ALBUMS — HORIZONTAL LAYOUT */
.pdr-rec-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 25px;
    align-items: start;
}

/* Make sure cards don't stretch full width */
.pdr-rec-grid > * {
    width: auto !important;
    display: block !important;
}

/* ==========================================================================
   PAGE-SPECIFIC STYLES: Isaiah Rashad — "It's Been Awful" (Post ID: 414)
   ========================================================================== */

/* 1. Darken the main article container */
.postid-414 .review-article {
    background-color: #0a0a0a;
    color: #e0e0e0;
    border: 1px solid #222;
}

/* 2. The Hero Section */
.postid-414 .review-hero {
    background: linear-gradient(180deg, #3a0000 0%, #0a0a0a 100%);
    padding: 4rem 2rem 2rem;
    text-align: center;
    border-bottom: 2px solid #8b0000;
}

/* 3. The Gritty Title Effect */
.postid-414 .review-title {
    font-family: 'Arial Black', Impact, sans-serif;
    font-size: 3rem;
    text-transform: uppercase;
    line-height: 1.1;
    margin-bottom: 0.5rem;
    background-image: 
        url('data:image/svg+xml;utf8,%3Csvg viewBox="0 0 200 200" xmlns="http://www.w3.org/2000/svg"%3E%3Cfilter id="noiseFilter"%3E%3CfeTurbulence type="fractalNoise" baseFrequency="0.8" numOctaves="3" stitchTiles="stitch"/%3E%3C/filter%3E%3Crect width="100%25" height="100%25" filter="url(%23noiseFilter)"/%3E%3C/svg%3E'),
        linear-gradient(135deg, #ff3333, #8b0000);
    color: transparent;
    -webkit-background-clip: text;
    background-clip: text;
}

.postid-414 .review-title em {
    font-style: italic;
}

/* 4. The Subtitle */
.postid-414 .review-subtitle {
    color: #888;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-size: 0.9rem;
    margin-top: 10px;
}

/* 5. The Content Typography */
.postid-414 .review-content {
    padding: 2rem 1.5rem;
    line-height: 1.8;
    font-size: 1.1rem;
}

/* 6. The Blockquote */
.postid-414 .review-quote {
    border-left: 4px solid #8b0000;
    background: #111;
    color: #fff;
    font-size: 1.3rem;
    font-style: italic;
    padding: 1.5rem 2rem;
    margin: 2.5rem 0;
    box-shadow: 6px 6px 0px rgba(139, 0, 0, 0.3);
}
/* Styling for the Artist Bio Button */
.artist-bio-link a {
    display: inline-block;
    padding: 8px 16px;
    border: 1px solid #000 !important; /* Forces the border to show */
    background-color: #fff;
    color: #000;
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

/* Hover Effect for the button */
.artist-bio-link a:hover {
    background-color: #000;
    color: #fff;
}

/* Ensure the container has space */
.review-footer {
    margin-top: 50px;
    padding-top: 30px;
}

/* Fallback default */
:root {
    --accent-color: #ffffff; 
}

/* Make your hero and content respond to the variable */
.pdr-article-hero h1 {
    color: var(--accent-color) !important;
}

/* Style your rating badge to match */
.pdr-rating-badge {
    border: 1px solid var(--accent-color);
    color: var(--accent-color);
}

/* Style the Bio Button if you are placing it in the footer */
.artist-bio-link a {
    display: inline-block;
    padding: 8px 16px;
    border: 1px solid var(--accent-color);
    color: var(--accent-color);
    text-decoration: none;
    transition: 0.3s;
}

.artist-bio-link a:hover {
    background-color: var(--accent-color);
    color: #000;
}

/* Update the quote style if you use it in your content */
.pdr-article-content blockquote {
    border-left: 4px solid var(--accent-color);
    background: rgba(255, 255, 255, 0.05);
    padding: 15px;
}
/* WPForms: Force Labels and Text to White */
.wpforms-container-full .wpforms-form .wpforms-field-label,
.wpforms-container-full .wpforms-form .wpforms-field-description,
.wpforms-container-full .wpforms-form .wpforms-title,
.wpforms-container-full .wpforms-form .wpforms-submit {
    color: #ffffff !important;
}

/* WPForms: Input Fields and Textarea Background/Text */
.wpforms-container-full .wpforms-form input[type=text],
.wpforms-container-full .wpforms-form input[type=email],
.wpforms-container-full .wpforms-form textarea,
.wpforms-container-full .wpforms-form select {
    background-color: #1a1a1a !important;
    color: #ffffff !important;
    border: 1px solid #444444 !important;
}

/* WPForms: Placeholder Text Color */
.wpforms-container-full .wpforms-form ::placeholder {
    color: #888888 !important;
    opacity: 1;
}

/* WPForms: Submit Button Styling */
.wpforms-container-full .wpforms-form button[type=submit] {
    background-color: #444444 !important;
    color: #ffffff !important;
    border: none !important;
    padding: 10px 20px !important;
}

.pdr-button-back:hover {
    background: #333;
    border-color: #666;
    color: #fff;
}