:root {
    --primary-text: #000000;
    --secondary-text: #555555;
    --accent-red: #e02424;
    --border-color: #dddddd;
    --bg-light: #f9f9f9;
    --font-serif: "Crimson Pro", Georgia, serif;
    --font-sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #ffffff;
    color: var(--primary-text);
    line-height: 1.6;
    padding: 40px 0;
}

.container {
    max-width: 1080px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Breadcrumbs */
.breadcrumbs {
    font-family: var(--font-sans);
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.1em;
    color: #888;
    margin-bottom: 12px;
}

.breadcrumbs a {
    text-decoration: none;
    color: inherit;
}

.breadcrumbs a:hover {
    text-decoration: underline;
}

/* Article Header */
.article-header {
    margin-bottom: 30px;
}

.header-divider {
    height: 4px;
    background-color: #000000;
    margin-bottom: 15px;
}

.article-title {
    font-family: var(--font-serif);
    font-size: 48px;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 20px;
    letter-spacing: -0.01em;
}

.article-timestamp {
    font-family: var(--font-sans);
    font-size: 14px;
    color: var(--secondary-text);
    margin-bottom: 25px;
}

/* Social Share */
.social-share {
    display: flex;
    gap: 12px;
    align-items: center;
}

.share-btn,
.save-btn {
    background: #f0f0f0;
    border: none;
    border-radius: 2px;
    padding: 8px 10px;
    cursor: pointer;
    font-family: var(--font-sans);
    font-size: 13px;
    color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.15s ease;
}

.share-btn:hover,
.save-btn:hover {
    background: #e2e2e2;
}

.share-btn {
    width: 38px;
    height: 38px;
}

.save-btn {
    gap: 8px;
    padding: 0 15px;
    height: 38px;
    font-weight: 500;
    text-transform: capitalize;
}

/* Featured Image */
.featured-image {
    margin: 30px 0;
}

.featured-image img {
    width: 100%;
    height: auto;
    display: block;
}

.featured-image figcaption {
    font-family: var(--font-sans);
    font-size: 12px;
    color: var(--secondary-text);
    text-align: right;
    margin-top: 8px;
}

/* Author Section */
.author-section {
    display: flex;
    gap: 15px;
    margin-bottom: 40px;
    align-items: flex-start;
}

.author-avatar img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
}

.author-details {
    max-width: 500px;
}

.author-name {
    font-family: var(--font-sans);
    font-weight: 700;
    font-size: 14px;
    margin-bottom: 4px;
}

.author-name a {
    text-decoration: underline;
    color: inherit;
}

.author-bio {
    font-family: var(--font-sans);
    font-size: 13px;
    color: #444;
    line-height: 1.4;
}

/* Content Layout */
.content-wrapper {
    margin-bottom: 60px;
}

.article-body {
    font-family: var(--font-serif);
    font-size: 18px;
    line-height: 1.6;
    color: #1a1a1a;
}

.article-body p {
    margin-bottom: 25px;
}

/* Editor's Choice Section */
.editors-choice {
    border-top: 4px solid #000;
    margin-bottom: 60px;
}

.editors-choice-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
}

.section-title,
.guide-title,
.reading-title,
.sidebar-title {
    font-family: var(--font-sans);
    font-size: 35px;
    font-weight: 800;
    color: #000;
    margin: 10px 0 30px 0;
    letter-spacing: -0.02em;
    line-height: 1.1;
}

.wishlist-counter {
    background: #f0f0f0;
    padding: 8px 15px;
    border-radius: 20px;
    font-family: var(--font-sans);
    font-size: 13px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
}

.wishlist-counter i {
    color: #e02424;
}

.product-card {
    display: flex;
    flex-direction: column;
    gap: 15px;
    background: #fff;
    position: relative;
    padding-bottom: 30px;
    min-height: auto;
}

.product-image-container {
    position: relative;
    width: 100%;
    aspect-ratio: 1/1;
    margin-bottom: 20px;
}

.badge-hot {
    position: absolute;
    top: 0;
    left: 0;
    background-color: #e02424;
    color: #fff;
    padding: 6px 14px;
    font-family: var(--font-sans);
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    z-index: 2;
}

.product-image-small {
    width: 100%;
    height: 100%;
    background-color: transparent;
    border-radius: 0;
    border: none;
    object-fit: contain;
}

.wishlist-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #fff;
    border: none;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s;
    z-index: 2;
}

.wishlist-btn:hover {
    transform: scale(1.1);
}

.wishlist-btn i {
    color: #ccc;
    font-size: 16px;
    transition: color 0.2s;
}

.wishlist-btn.active i {
    color: #e02424;
}

.product-info {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
    
    /* Reduced gap */
}

.product-title {
    font-size: 16px;
    font-family: sans-serif;
    font-weight: 400;
    line-height: 1.4;
    color: #1a2b3c;
    /* Darker blue-ish black */
}

.product-desc {
    font-family: var(--font-sans);
    font-size: 13px;
    color: #666;
    line-height: 1.5;
    margin-top: 2px;
    display: -webkit-box;
    -webkit-line-clamp: 2;      /* number of lines */
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 1.4em;
    max-height: 2.8em;  
}

.product-engagement {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 8px 0 12px 0;
}

.wishlist-btn-hollow {
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wishlist-btn-hollow i {
    color: #555;
    font-size: 18px;
}

.wishlist-btn-hollow.active i {
    color: #e02424;
    font-weight: 900;
}

.save-count {
    font-family: var(--font-sans);
    font-size: 13px;
    color: #777;
}

.product-desc {
    font-family: var(--font-sans);
    font-size: 13px;
    color: #666;
    line-height: 1.4;
}

.amazon-btn {
    background-color: #76d7b0;
    /* Teal color from image */
    color: #fff;
    text-decoration: none;
    font-family: var(--font-sans);
    font-weight: 800;
    font-size: 16px;
    padding: 12px 20px;
    text-align: center;
    border-radius: 2px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    width: fit-content;
    /* Not full width */
    letter-spacing: 0.05em;
    transition: opacity 0.2s;
}

.amazon-btn:hover {
    opacity: 0.9;
}

.amazon-btn .price {
    font-size: 13px;
}

/* Responsive */
@media (max-width: 800px) {
    .content-wrapper {
        grid-template-columns: 1fr;
    }

    .product-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .article-title {
        font-size: 36px;
    }
}

/* Divider */
.divider-thick {
    height: 4px;
    background-color: #000;
    margin: 30px 0 10px 0;
}

/* Newsletter Banner */
.newsletter-banner {
    background-color: #e3f2fd;
    padding: 30px;
    margin-bottom: 40px;
}

.newsletter-title {
    font-family: var(--font-sans);
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 8px;
}

.newsletter-desc {
    font-family: var(--font-sans);
    font-size: 14px;
    color: #444;
    margin-bottom: 20px;
    max-width: 500px;
}

.newsletter-form {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
}

.newsletter-form input {
    flex: 1;
    padding: 10px;
    border: 1px solid #ccc;
    font-size: 14px;
}

.newsletter-form button {
    background: #000;
    color: #fff;
    border: none;
    padding: 0 25px;
    font-weight: 700;
    cursor: pointer;
    font-size: 12px;
}

.newsletter-legal {
    font-size: 11px;
    color: #666;
}

.newsletter-legal a {
    color: inherit;
    text-decoration: underline;
}

/* Research Section Layout */
.research-container {
    display: grid;
    grid-template-columns: 1fr 280px;
    gap: 40px;
    margin-top: 40px;
}

.research-title {
    font-family: var(--font-sans);
    font-size: 18px;
    font-weight: 900;
    margin-bottom: 10px;
}

.research-subtitle {
    font-family: var(--font-serif);
    font-size: 28px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 25px;
}


.sidebar-item {
    display: flex;
    gap: 12px;
    margin-bottom: 20px;
    text-decoration: none;
    color: inherit;
}

.sidebar-img {
    width: 65px;
    height: 65px;
    background: #e5e5e5;
    flex-shrink: 0;
    border-radius: 2px;
    background-size: cover;
    background-position: center;
}

.sidebar-text {
    font-family: var(--font-sans);
    font-size: 12px;
    font-weight: 700;
    line-height: 1.3;
}

.sidebar-more {
    display: block;
    margin-top: 10px;
    font-family: var(--font-sans);
    font-size: 11px;
    color: #666;
    text-decoration: none;
}

/* Top Pick Card */
.top-pick-card {
    background-color: #f0f7ff;
    border: 1px solid #3b82f6;
    padding: 25px;
    margin: 40px 0;
    position: relative;
    display: flex;
    gap: 25px;
    border-radius: 4px;
}

.top-pick-label {
    position: absolute;
    top: 0;
    left: 0;
    background: #3b82f6;
    color: #fff;
    padding: 2px 10px;
    font-family: var(--font-sans);
    font-size: 11px;
    font-weight: 700;
}

.top-pick-image {
    width: 120px;
    flex-shrink: 0;
}

.top-pick-image img {
    width: 100%;
}

.top-pick-info h4 {
    font-family: var(--font-serif);
    font-size: 20px;
    margin-bottom: 10px;
}

.top-pick-details {
    font-family: var(--font-sans);
    font-size: 13px;
    margin-bottom: 15px;
    color: #444;
}

.buy-amazon-btn {
    background: #000;
    color: #fff;
    padding: 10px 30px;
    text-decoration: none;
    font-family: var(--font-sans);
    font-weight: 700;
    border-radius: 4px;
    display: inline-block;
    font-size: 12px;
}

.red-link {
    color: #e02424;
    text-decoration: underline;
}

/* Article Body Overrides */
.research-body p {
    font-family: var(--font-serif);
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 25px;
}

/* Meet Your Guide Section */
.guide-section {
    margin-top: 10px;
    margin-bottom: 60px;
    max-width: 1080px;
}

/* .guide-title styles moved to shared block above */

.guide-profile {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 25px;
}

.guide-avatar-small {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
}

.guide-name {
    font-family: var(--font-sans);
    font-size: 14px;
    font-weight: 700;
}

.guide-bio {
    font-family: var(--font-serif);
    font-size: 20px;
    line-height: 1.6;
    color: #1a1a1a;
}

/* Further Reading Section */
.further-reading {
    margin-bottom: 80px;
    max-width: 1080px;
}

/* .reading-title styles moved to shared block above */

.reading-list {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.reading-item {
    display: flex;
    gap: 25px;
    text-decoration: none;
    color: inherit;
}

.reading-img-box {
    width: 180px;
    flex-shrink: 0;
    aspect-ratio: 3/2;
    background-color: #eee;
    overflow: hidden;
    border-radius: 2px;
}

.reading-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.reading-text h4 {
    font-family: var(--font-sans);
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 10px;
    line-height: 1.2;
}

.reading-text p {
    font-family: var(--font-sans);
    font-size: 13px;
    color: #555;
    line-height: 1.5;
}

@media (max-width: 800px) {
    .research-container {
        grid-template-columns: 1fr;
    }

    .product-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .article-title {
        font-size: 36px;
    }
}

@media (max-width: 600px) {
    .product-grid {
        grid-template-columns: 1fr;
    }

    .reading-item {
        flex-direction: column;
        gap: 15px;
    }

    .reading-img-box {
        width: 100%;
    }

    .top-pick-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .top-pick-image {
        width: 150px;
    }
}