/*
Theme Name:   Lifes To Span
Theme URI:    https://rswpthemes.com/
Description:  Child theme for Starter Blog
Author:       RS WP THEMES
Template:     starter-blog
Version:      1.0.0
*/
/* Custom Font Import */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&family=Playfair+Display:wght@600;700&display=swap');

/* CSS Variables & Global Styles */
:root {
    --rs-ltt-bg-body: #fafaf9;
    --rs-ltt-color-primary: #ea580c;
    --rs-ltt-color-primary-hover: #c2410c;
    --rs-ltt-color-dark: #1c1917;
    --rs-ltt-color-dark-muted: #292524;
    --rs-ltt-color-text: #44403c;
    --rs-ltt-color-text-light: #78716c;
    --rs-ltt-color-border: #e7e5e4;
    --rs-ltt-color-white: #ffffff;
    --rs-ltt-font-sans: 'Inter', sans-serif;
    --rs-ltt-font-serif: 'Playfair Display', serif;
}

.rs-ltt-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 48px 24px;
    font-family: var(--rs-ltt-font-sans);
    color: var(--rs-ltt-color-text);
    box-sizing: border-box;
}

/* Base Typography */
.rs-ltt-font-serif {
    font-family: var(--rs-ltt-font-serif);
}

/* ==========================================
   2. HERO SECTION / FEATURED POST
   ========================================== */
.rs-ltt-hero {
    margin-bottom: 64px;
}

.rs-ltt-hero-card {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    background-color: var(--rs-ltt-color-dark);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
}

.rs-ltt-hero-img-wrapper {
    width: 100%;
    height: 480px;
    overflow: hidden;
}

.rs-ltt-hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 1;
    transition: transform 0.7s cubic-bezier(0, 0, 0.2, 1);
}

.rs-ltt-hero-card:hover .rs-ltt-hero-img {
    transform: scale(1.05);
}

.rs-ltt-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, #0c0a09 0%, rgba(12, 10, 9, 0.4) 60%, transparent 100%);
}

.rs-ltt-hero-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 32px;
    max-width: 768px;
    box-sizing: border-box;
}

@media (min-width: 768px) {
    .rs-ltt-hero-content {
        padding: 48px;
    }
}

.rs-ltt-hero-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 12px;
    color: #fb923c;
    font-weight: 500;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.rs-ltt-hero-title {
    font-family: var(--rs-ltt-font-serif);
    font-size: 28px;
    line-height: 1.25;
    color: var(--rs-ltt-color-white);
    font-weight: 700;
    margin: 0 0 16px 0;
}

@media (min-width: 768px) {
    .rs-ltt-hero-title {
        font-size: 48px;
    }
}

.rs-ltt-hero-desc {
    color: #d6d3d1;
    font-size: 14px;
    font-weight: 300;
    margin: 0 0 24px 0;
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

@media (min-width: 768px) {
    .rs-ltt-hero-desc {
        font-size: 16px;
    }
}

.rs-ltt-btn-primary {
    display: inline-flex;
    align-items: center;
    font-size: 14px;
    font-weight: 600;
    color: var(--rs-ltt-color-white);
    background-color: var(--rs-ltt-color-primary);
    padding: 12px 24px;
    border-radius: 9999px;
    text-decoration: none;
    transition: background-color 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.rs-ltt-btn-primary:hover {
    background-color: #f97316;
}

.rs-ltt-btn-icon {
    width: 16px;
    height: 16px;
    margin-left: 8px;
}

/* ==========================================
   3. RECENT ARTICLES HEADER
   ========================================== */
.rs-ltt-section-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 40px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--rs-ltt-color-border);
}

.rs-ltt-section-title {
    font-family: var(--rs-ltt-font-serif);
    font-size: 30px;
    font-weight: 700;
    color: var(--rs-ltt-color-dark);
    margin: 0;
}

.rs-ltt-section-subtitle {
    font-size: 14px;
    color: var(--rs-ltt-color-text-light);
    margin: 4px 0 0 0;
}

/* ==========================================
   4. ARTICLE GRID (FLEXBOX BASED)
   ========================================== */
.rs-ltt-grid {
    display: flex;
    flex-wrap: wrap;
    margin: -16px;
    margin-bottom: 64px;
}

.rs-ltt-grid-item {
    padding: 16px;
    width: 100%;
    box-sizing: border-box;
}

@media (min-width: 768px) {
    .rs-ltt-grid-item {
        width: 50%;
    }
}

@media (min-width: 1024px) {
    .rs-ltt-grid-item {
        width: 33.3333%;
    }
}

.rs-ltt-card {
    background-color: var(--rs-ltt-color-white);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(231, 229, 228, 0.8);
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.rs-ltt-card:hover {
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.08), 0 8px 10px -6px rgba(0, 0, 0, 0.04);
}

.rs-ltt-card-thumb {
    position: relative;
    overflow: hidden;
    height: 208px;
}

.rs-ltt-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.rs-ltt-card:hover .rs-ltt-card-img {
    transform: scale(1.05);
}

.rs-ltt-card-body {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.rs-ltt-card-meta {
    font-size: 12px;
    color: #a8a29e;
    font-weight: 500;
    margin-bottom: 8px;
}

.rs-ltt-card-title {
    font-family: var(--rs-ltt-font-serif);
    font-size: 20px;
    font-weight: 700;
    color: var(--rs-ltt-color-dark);
    margin: 0 0 12px 0;
    transition: color 0.2s ease;
}

.rs-ltt-card:hover .rs-ltt-card-title {
    color: var(--rs-ltt-color-primary);
}

.rs-ltt-card-text {
    color: var(--rs-ltt-color-text);
    font-size: 14px;
    line-height: 1.625;
    margin: 0 0 24px 0;
    flex-grow: 1;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.rs-ltt-card-link {
    font-size: 14px;
    font-weight: 600;
    color: var(--rs-ltt-color-primary);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    margin-top: auto;
    transition: color 0.2s ease;
}

.rs-ltt-card-link:hover {
    color: var(--rs-ltt-color-primary-hover);
}

.rs-ltt-card-link span {
    margin-left: 4px;
}

/* ==========================================
   5. PAGINATION
   ========================================== */
.rs-ltt-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin: 48px 0;
}

.rs-ltt-pagination-item {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    box-sizing: border-box;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.rs-ltt-pagination-active {
    background-color: var(--rs-ltt-color-primary);
    color: var(--rs-ltt-color-white);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.rs-ltt-pagination-link {
    background-color: var(--rs-ltt-color-white);
    color: var(--rs-ltt-color-text);
    border: 1px solid var(--rs-ltt-color-border);
}

.rs-ltt-pagination-link:hover {
    background-color: #e7e5e4;
}

/* Taxonomy Page */

/* ==========================================
   2. HERO / AUTHOR BIO SECTION
   ========================================== */
.rs-ltt-author-card {
    background-color: var(--rs-ltt-color-white);
    border-radius: 24px;
    padding: 32px;
    border: 1px solid rgba(231, 229, 228, 0.8);
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    margin-bottom: 64px;
}

@media (min-width: 768px) {
    .rs-ltt-author-card {
        padding: 48px;
    }
}

.rs-ltt-author-flex {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

@media (min-width: 1024px) {
    .rs-ltt-author-flex {
        flex-direction: row;
        align-items: flex-start;
    }
}

/* Author Sidebar Profile */
.rs-ltt-author-sidebar {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 100%;
}

@media (min-width: 1024px) {
    .rs-ltt-author-sidebar {
        width: 33.3333%;
        align-items: flex-start;
        text-align: left;
        position: sticky;
        top: 112px;
    }
}

.rs-ltt-avatar-wrapper {
    position: relative;
    margin-bottom: 24px;
}

.rs-ltt-avatar-glow {
    position: absolute;
    inset: -4px;
    background: linear-gradient(to right, #f59e0b, #ea580c);
    border-radius: 16px;
    filter: blur(8px);
    opacity: 0.3;
    transition: opacity 0.5s ease;
}

.rs-ltt-avatar-wrapper:hover .rs-ltt-avatar-glow {
    opacity: 0.5;
}

.rs-ltt-avatar-img {
    position: relative;
    border-radius: 16px;
    width: 224px;
    height: 224px;
    object-fit: cover;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    border: 2px solid var(--rs-ltt-color-white);
}

@media (min-width: 768px) {
    .rs-ltt-avatar-img {
        width: 256px;
        height: 256px;
    }
}

.rs-ltt-author-name {
    font-family: var(--rs-ltt-font-serif);
    font-size: 30px;
    font-weight: 700;
    color: var(--rs-ltt-color-dark);
    margin: 0;
}

.rs-ltt-author-tag {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #d97706;
    font-weight: 600;
    margin-top: 4px;
    margin-bottom: 16px;
}

.rs-ltt-social-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background-color: #f5f5f4;
    color: #292524;
    font-size: 12px;
    font-weight: 600;
    border-radius: 9999px;
    text-decoration: none;
    transition: background-color 0.2s ease;
    margin-top: 8px;
}

.rs-ltt-social-btn:hover {
    background-color: #e7e5e4;
}

.rs-ltt-social-icon {
    width: 16px;
    height: 16px;
    fill: currentColor;
}

/* Author Main Bio Content */
.rs-ltt-author-bio {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 24px;
    font-weight: 300;
    line-height: 1.625;
    font-size: 14px;
}

@media (min-width: 768px) {
    .rs-ltt-author-bio {
        font-size: 16px;
    }
}

@media (min-width: 1024px) {
    .rs-ltt-author-bio {
        width: 66.6666%;
    }
}

.rs-ltt-bio-title {
    font-family: var(--rs-ltt-font-serif);
    font-size: 24px;
    font-weight: 700;
    color: var(--rs-ltt-color-dark);
    margin: 0 0 16px 0;
    padding-bottom: 8px;
    border-bottom: 1px solid #f5f5f4;
}

.rs-ltt-bio-subheading {
    font-family: var(--rs-ltt-font-serif);
    font-size: 18px;
    font-weight: 700;
    color: var(--rs-ltt-color-dark);
    margin: 0 0 12px 0;
}

.rs-ltt-author-bio p {
    margin: 0 0 16px 0;
}

.rs-ltt-author-bio p:last-child {
    margin-bottom: 0;
}

.rs-ltt-strong {
    color: var(--rs-ltt-color-dark);
    font-weight: 600;
}

.rs-ltt-quote-box {
    background-color: rgba(fffbeb, 0.6);
    background-color: #fffbeb;
    border-left: 4px solid #f59e0b;
    padding: 20px;
    border-top-right-radius: 16px;
    border-bottom-right-radius: 16px;
    margin: 24px 0;
    color: #292524;
    font-family: var(--rs-ltt-font-serif);
    font-style: italic;
}

/* ==========================================
   3. BOOKS SHOWCASE SECTION
   ========================================== */
.rs-ltt-section-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 32px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--rs-ltt-color-border);
}

.rs-ltt-section-title {
    font-family: var(--rs-ltt-font-serif);
    font-size: 24px;
    font-weight: 700;
    color: var(--rs-ltt-color-dark);
    margin: 0;
}

@media (min-width: 768px) {
    .rs-ltt-section-title {
        font-size: 30px;
    }
}

.rs-ltt-section-subtitle {
    font-size: 12px;
    color: var(--rs-ltt-color-text-muted);
    margin: 4px 0 0 0;
}

@media (min-width: 768px) {
    .rs-ltt-section-subtitle {
        font-size: 14px;
    }
}

/* Book Grid (Flexbox Based) */
.rs-ltt-book-grid {
    display: flex;
    flex-wrap: wrap;
    margin: -16px;
}

.rs-ltt-book-item {
    padding: 16px;
    width: 100%;
    box-sizing: border-box;
}

@media (min-width: 768px) {
    .rs-ltt-book-item {
        width: 33.3333%;
    }
}

.rs-ltt-book-card {
    background-color: var(--rs-ltt-color-white);
    border-radius: 16px;
    border: 1px solid rgba(231, 229, 228, 0.8);
    padding: 24px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    box-sizing: border-box;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.rs-ltt-book-card:hover {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.rs-ltt-book-cover-bg {
    background-color: #f5f5f4;
    border-radius: 12px;
    padding: 24px;
    display: flex;
    justify-content: center;
    margin-bottom: 24px;
}


.rs-ltt-book-card:hover .rs-ltt-book-img {
    transform: scale(1.05);
}

.rs-ltt-book-title {
    font-family: var(--rs-ltt-font-serif);
    font-weight: 700;
    color: var(--rs-ltt-color-dark);
    font-size: 18px;
    margin: 0 0 4px 0;
}

.rs-ltt-book-tagline {
    font-size: 12px;
    color: var(--rs-ltt-color-text-muted);
    margin: 0 0 12px 0;
}

.rs-ltt-book-desc {
    color: var(--rs-ltt-color-text);
    font-size: 12px;
    line-height: 1.625;
    margin: 0 0 16px 0;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.rs-ltt-book-footer {
    padding-top: 16px;
    border-top: 1px solid #f5f5f4;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.rs-ltt-book-price {
    font-size: 16px;
    font-weight: 700;
    color: var(--rs-ltt-color-dark);
}

.rs-ltt-btn-buy {
    font-size: 12px;
    font-weight: 600;
    padding: 8px 16px;
    border-radius: 8px;
    background-color: #059669;
    color: var(--rs-ltt-color-white);
    text-decoration: none;
    transition: background-color 0.2s ease;
}

.rs-ltt-btn-buy:hover {
    background-color: #047857;
}

/* Single Book */

/* ==========================================
   2. HERO SHOWCASE SECTION
   ========================================== */
.rs-ltt-hero-card {
    background-color: var(--rs-ltt-color-white);
    border-radius: 24px;
    padding: 32px;
    border: 1px solid rgba(231, 229, 228, 0.8);
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    margin-bottom: 48px;
}



.rs-ltt-hero-flex {
    display: flex;
    flex-direction: column;
    gap: 48px;
}

@media (min-width: 1024px) {
    .rs-ltt-hero-flex {
        flex-direction: row;
        align-items: center;
    }
}

/* Cover Image Wrapper */
.rs-ltt-hero-cover-col {
    display: flex;
    justify-content: center;
    width: 100%;
}

@media (min-width: 1024px) {
    .rs-ltt-hero-cover-col {
        width: 41.6666%;
    }
}

.rs-ltt-cover-wrapper {
    position: relative;
}

/* .rs-ltt-cover-glow {
    position: absolute;
    inset: -4px;
    background: linear-gradient(to right, #f59e0b, #ea580c);
    border-radius: 16px;
    filter: blur(16px);
    opacity: 0.25;
    transition: opacity 0.5s ease;
} */

.rs-ltt-cover-wrapper:hover .rs-ltt-cover-glow {
    opacity: 0.4;
}

.rs-ltt-cover-img {
    position: relative;
    border-radius: 12px;
    /* box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25); */
    max-width: 280px;
    width: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

@media (min-width: 768px) {
    .rs-ltt-cover-img {
        max-width: 340px;
    }
}

.rs-ltt-cover-wrapper:hover .rs-ltt-cover-img {
    transform: scale(1.02);
}

/* Main Details Col */
.rs-ltt-hero-details-col {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

@media (min-width: 1024px) {
    .rs-ltt-hero-details-col {
        width: 58.3333%;
    }
}

.rs-ltt-badge-stock {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 4px 12px;
    border-radius: 9999px;
    background-color: #ecfdf5;
    color: #047857;
    font-size: 12px;
    font-weight: 500;
    border: 1px solid #a7f3d0;
    width: fit-content;
}

.rs-ltt-badge-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #10b981;
}

.rs-ltt-book-main-title {
    font-family: var(--rs-ltt-font-serif);
    font-size: 28px;
    line-height: 1.25;
    font-weight: 700;
    color: var(--rs-ltt-color-dark);
    margin: 0;
}

@media (min-width: 768px) {
    .rs-ltt-book-main-title {
        font-size: 48px;
    }
}

.rs-ltt-author-byline {
    font-size: 16px;
    color: var(--rs-ltt-color-text);
    font-weight: 500;
    margin: 0;
}

.rs-ltt-author-link {
    color: var(--rs-ltt-color-dark);
    text-decoration: underline;
    text-decoration-color: #f59e0b;
    text-underline-offset: 4px;
    transition: color 0.2s ease;
}

.rs-ltt-author-link:hover {
    color: var(--rs-ltt-color-primary);
}

.rs-ltt-book-summary {
    color: var(--rs-ltt-color-text);
    font-size: 14px;
    line-height: 1.625;
    font-weight: 300;
    margin: 0;
}

@media (min-width: 768px) {
    .rs-ltt-book-summary {
        font-size: 16px;
    }
}

.rs-ltt-purchase-row {
    padding-top: 16px;
    border-top: 1px solid #f5f5f4;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

@media (min-width: 640px) {
    .rs-ltt-purchase-row {
        flex-direction: row;
        align-items: center;
    }
}

.rs-ltt-price-label {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #a8a29e;
    display: block;
    font-weight: 500;
}

.rs-ltt-price-val {
    font-size: 30px;
    font-weight: 700;
    color: var(--rs-ltt-color-dark);
}

.rs-ltt-btn-amazon {
    width: 100%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background-color: #FF9900;
    color: #0c0a09;
    font-weight: 700;
    padding: 16px 32px;
    border-radius: 12px;
    text-decoration: none;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
    box-sizing: border-box;
}

@media (min-width: 640px) {
    .rs-ltt-btn-amazon {
        width: auto;
    }
}

.rs-ltt-btn-amazon:hover {
    background-color: #e68a00;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.rs-ltt-amazon-icon {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

/* ==========================================
   3. DETAILS & SPECIFICATIONS GRID
   ========================================== */
.rs-ltt-details-grid {
    display: flex;
    flex-wrap: wrap;
    margin: -16px;
}

.rs-ltt-details-col-left {
    padding: 16px;
    width: 100%;
    box-sizing: border-box;
}

.rs-ltt-details-col-right {
    padding: 16px;
    width: 100%;
    box-sizing: border-box;
}

@media (min-width: 1024px) {
    .rs-ltt-details-col-left {
        width: 58.3333%;
    }

    .rs-ltt-details-col-right {
        width: 41.6666%;
    }
}

/* About Section Card */
.rs-ltt-about-card {
    background-color: var(--rs-ltt-color-white);
    border-radius: 24px;
    padding: 32px;
    border: 1px solid rgba(231, 229, 228, 0.8);
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.rs-ltt-card-heading {
    font-family: var(--rs-ltt-font-serif);
    font-size: 24px;
    font-weight: 700;
    color: var(--rs-ltt-color-dark);
    margin: 0;
    padding-bottom: 16px;
    border-bottom: 1px solid #f5f5f4;
}

.rs-ltt-prose {
    color: var(--rs-ltt-color-text);
    line-height: 1.625;
    font-size: 14px;
    font-weight: 300;
}

@media (min-width: 768px) {
    .rs-ltt-prose {
        font-size: 16px;
    }
}

.rs-ltt-prose p {
    margin: 0 0 16px 0;
}

.rs-ltt-subheading {
    font-family: var(--rs-ltt-font-serif);
    font-size: 18px;
    font-weight: 700;
    color: var(--rs-ltt-color-dark);
    margin: 16px 0 12px 0;
}

.rs-ltt-key-list {
    list-style: none;
    padding: 0;
    margin: 16px 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.rs-ltt-key-item {
    display: flex;
    align-items: flex-start;
}

.rs-ltt-bullet {
    color: #f59e0b;
    margin-right: 12px;
    font-weight: 700;
}

.rs-ltt-quote-callout {
    font-size: 12px;
    font-style: italic;
    color: var(--rs-ltt-color-text-light);
    background-color: #fafaf9;
    padding: 16px;
    border-radius: 12px;
    border: 1px solid #f5f5f4;
    margin-top: 16px;
}

/* Specs Section Card */
.rs-ltt-specs-card {
    background-color: var(--rs-ltt-color-dark);
    color: #d6d3d1;
    border-radius: 24px;
    padding: 32px;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    box-sizing: border-box;
}

.rs-ltt-specs-heading {
    font-family: var(--rs-ltt-font-serif);
    font-size: 20px;
    font-weight: 700;
    color: var(--rs-ltt-color-white);
    margin: 0 0 24px 0;
    padding-bottom: 16px;
    border-bottom: 1px solid #292524;
}

.rs-ltt-specs-grid {
    display: flex;
    flex-wrap: wrap;
    margin: -10px;
}

.rs-ltt-spec-item {
    padding: 10px;
    width: 50%;
    box-sizing: border-box;
}

.rs-ltt-spec-label {
    color: #78716c;
    display: block;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 2px;
}

.rs-ltt-spec-value {
    color: #e7e5e4;
    font-weight: 500;
    font-size: 12px;
}

@media (min-width: 768px) {
    .rs-ltt-spec-value {
        font-size: 14px;
    }
}

.rs-ltt-categories-box {
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid #292524;
}

.rs-ltt-category-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 8px;
}

.rs-ltt-tag {
    padding: 4px 10px;
    background-color: #292524;
    color: #fbbf24;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 500;
}

/* Contact Page */


/* Base Layout Container */
.rs-ltt-contact-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 48px 24px;
    font-family: var(--rs-ltt-font-sans);
    color: var(--rs-ltt-color-dark);
    box-sizing: border-box;
}

@media (min-width: 768px) {
    .rs-ltt-contact-container {
        padding: 80px 24px;
    }
}

/* Card Wrapper */
.rs-ltt-contact-card {
    background-color: var(--rs-ltt-color-white);
    border-radius: 24px;
    border: 1px solid var(--rs-ltt-color-border);
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.rs-ltt-contact-flex {
    display: flex;
    flex-direction: column;
}

@media (min-width: 1024px) {
    .rs-ltt-contact-flex {
        flex-direction: row;
    }
}

/* Card Wrapper */
.rs-ltt-contact-card {
    background-color: var(--rs-ltt-color-white);
    border-radius: 24px;
    border: 1px solid var(--rs-ltt-color-border);
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.rs-ltt-contact-flex {
    display: flex;
    flex-direction: column;
}

@media (min-width: 1024px) {
    .rs-ltt-contact-flex {
        flex-direction: row;
    }
}

/* ==========================================
   LEFT SIDE: INFO PANEL
   ========================================== */
.rs-ltt-info-panel {
    width: 100%;
    background-color: var(--rs-ltt-color-dark);
    color: var(--rs-ltt-color-white);
    padding: 32px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-sizing: border-box;
}

@media (min-width: 768px) {
    .rs-ltt-info-panel {
        padding: 48px;
    }
}

@media (min-width: 1024px) {
    .rs-ltt-info-panel {
        width: 41.6666%;
    }
}

.rs-ltt-info-badge {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #f59e0b;
}

.rs-ltt-info-heading {
    font-family: var(--rs-ltt-font-serif);
    font-size: 28px;
    font-weight: 700;
    margin-top: 8px;
    margin-bottom: 24px;
    color: var(--rs-ltt-color-white);
}

@media (min-width: 768px) {
    .rs-ltt-info-heading {
        font-size: 36px;
    }
}

.rs-ltt-info-desc {
    color: #a8a29e;
    font-size: 14px;
    font-weight: 300;
    line-height: 1.625;
    margin-bottom: 32px;
}

@media (min-width: 768px) {
    .rs-ltt-info-desc {
        font-size: 16px;
    }
}

.rs-ltt-info-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.rs-ltt-info-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.rs-ltt-info-icon-box {
    padding: 12px;
    background-color: #292524;
    border-radius: 12px;
    color: #f59e0b;
    display: flex;
    align-items: center;
    justify-content: center;
}

.rs-ltt-info-icon {
    width: 20px;
    height: 20px;
}

.rs-ltt-info-label {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #78716c;
    font-weight: 600;
}

.rs-ltt-info-val,
.rs-ltt-info-val a {
    font-size: 14px;
    font-weight: 500;
    color: #e7e5e4;
    margin-top: 2px;
}

/* Social Links Section */
.rs-ltt-social-box {
    padding-top: 40px;
    margin-top: 32px;
    border-top: 1px solid #292524;
}

.rs-ltt-social-title {
    font-size: 12px;
    color: #78716c;
    margin-bottom: 12px;
}

.rs-ltt-social-list {
    display: flex;
    gap: 12px;
}

.rs-ltt-social-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: #292524;
    color: #d6d3d1;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.rs-ltt-social-btn:hover {
    background-color: var(--rs-ltt-color-primary);
    color: var(--rs-ltt-color-white);
}

.rs-ltt-social-icon {
    width: 16px;
    height: 16px;
    fill: currentColor;
}

/* ==========================================
   RIGHT SIDE: FORM PANEL
   ========================================== */
.rs-ltt-form-panel {
    width: 100%;
    padding: 32px;
    background-color: var(--rs-ltt-color-white);
    box-sizing: border-box;
}

@media (min-width: 768px) {
    .rs-ltt-form-panel {
        padding: 48px;
    }
}

@media (min-width: 1024px) {
    .rs-ltt-form-panel {
        width: 58.3333%;
    }
}

.rs-ltt-contact-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.rs-ltt-form-row {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

@media (min-width: 640px) {
    .rs-ltt-form-row {
        flex-direction: row;
    }

    .rs-ltt-form-col {
        width: 50%;
    }
}

.rs-ltt-field-group {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.rs-ltt-label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #44403c;
    margin-bottom: 8px;
}

.rs-ltt-asterisk {
    color: var(--rs-ltt-color-primary);
}

.rs-ltt-input,
.rs-ltt-textarea {
    width: 100%;
    padding: 12px 16px;
    border-radius: 12px;
    border: 1px solid #e7e5e4;
    background-color: rgba(250, 250, 249, 0.5);
    color: var(--rs-ltt-color-dark);
    font-size: 14px;
    font-family: var(--rs-ltt-font-sans);
    box-sizing: border-box;
    transition: border-color 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
}

.rs-ltt-input:focus,
.rs-ltt-textarea:focus {
    outline: none;
    border-color: #f59e0b;
    background-color: var(--rs-ltt-color-white);
    box-shadow: 0 0 0 2px rgba(245, 158, 11, 0.2);
}

.rs-ltt-textarea {
    resize: none;
}

.rs-ltt-submit-btn {
    width: 100%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background-color: var(--rs-ltt-color-dark);
    color: var(--rs-ltt-color-white);
    font-weight: 600;
    font-size: 14px;
    padding: 16px 32px;
    border-radius: 12px;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    transition: background-color 0.3s ease;
    box-sizing: border-box;
}

@media (min-width: 640px) {
    .rs-ltt-submit-btn {
        width: auto;
    }
}

.rs-ltt-submit-btn:hover {
    background-color: var(--rs-ltt-color-primary);
}

.rs-ltt-btn-icon {
    width: 16px;
    height: 16px;
    stroke: currentColor;
}

/* ==========================================
   PAGINATION STYLING
   ========================================== */
.rs-ltt-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 48px;
    margin-bottom: 24px;
    font-family: var(--rs-ltt-font-sans, 'Inter', sans-serif);
}

/* Base button styles for page items */
.rs-ltt-pagination .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 14px;
    border-radius: 12px;
    background-color: #ffffff;
    border: 1px solid #e7e5e4;
    color: #57534e;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    box-sizing: border-box;
    transition: all 0.2s ease-in-out;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.03);
}

/* Hover state for clickable links */
.rs-ltt-pagination a.page-numbers:hover {
    background-color: #f5f5f4;
    color: #1c1917;
    border-color: #d6d3d1;
    transform: translateY(-1px);
}

/* Active / Current Page state */
.rs-ltt-pagination .page-numbers.current {
    background-color: #1c1917;
    color: #ffffff;
    border-color: #1c1917;
    font-weight: 600;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

/* Next / Prev Buttons Specific Styling */
.rs-ltt-pagination .next.page-numbers,
.rs-ltt-pagination .prev.page-numbers {
    font-size: 16px;
    font-weight: 600;
    color: #1c1917;
}

.rs-ltt-pagination a.next.page-numbers:hover,
.rs-ltt-pagination a.prev.page-numbers:hover {
    background-color: #d97706;
    /* Amber Accent */
    color: #ffffff;
    border-color: #d97706;
}

/* ==========================================
   HEADER & NAVIGATION
   ========================================== */
.rs-ltt-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background-color: rgba(250, 250, 249, 0.95);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid var(--rs-ltt-color-border, rgba(231, 229, 228, 0.8));
}

.rs-ltt-header-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 20px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.rs-ltt-brand {
    text-decoration: none;
    font-family: var(--rs-ltt-font-serif, 'Playfair Display', serif);
    font-size: 24px;
    font-weight: 700;
    letter-spacing: -0.025em;
    color: var(--rs-ltt-color-dark, #1c1917);
}

.rs-ltt-brand-dot {
    color: var(--rs-ltt-color-primary, #d97706);
}

.rs-ltt-brand-subtitle {
    font-size: 10px;
    letter-spacing: 0.1em;
    color: #78716c;
    text-transform: uppercase;
    margin-top: 2px;
}

.rs-ltt-nav {
    display: none;
    align-items: center;
    gap: 32px;
    font-size: 14px;
    font-weight: 500;
}

@media (min-width: 768px) {
    .rs-ltt-nav {
        display: flex;
    }
}

.rs-ltt-nav-link {
    color: var(--rs-ltt-color-text, #57534e);
    text-decoration: none;
    transition: color 0.2s ease;
}

.rs-ltt-nav-link:hover {
    color: var(--rs-ltt-color-dark, #1c1917);
}

.rs-ltt-nav-link.active {
    color: var(--rs-ltt-color-dark, #1c1917);
    font-weight: 600;
    border-bottom: 2px solid var(--rs-ltt-color-primary, #d97706);
    padding-bottom: 4px;
}

.rs-ltt-btn-subscribe {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 600;
    padding: 10px 16px;
    border-radius: 9999px;
    background-color: var(--rs-ltt-color-dark, #1c1917);
    color: var(--rs-ltt-color-white, #ffffff);
    text-decoration: none;
    transition: background-color 0.2s ease;
}

.rs-ltt-btn-subscribe:hover {
    background-color: var(--rs-ltt-color-primary, #d97706);
}

/* ==========================================
   MAIN CONTAINER & ARCHIVE CONTROLS
   ========================================== */
.rs-ltt-main {
    max-width: 1280px;
    margin: 0 auto;
    padding: 48px 24px;
    box-sizing: border-box;
}

.rs-ltt-archive-top {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 40px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--rs-ltt-color-border, rgba(231, 229, 228, 0.8));
}

@media (min-width: 768px) {
    .rs-ltt-archive-top {
        flex-direction: row;
        align-items: center;
    }
}

.rs-ltt-archive-heading {
    font-family: var(--rs-ltt-font-serif, 'Playfair Display', serif);
    font-size: 30px;
    font-weight: 700;
    color: var(--rs-ltt-color-dark, #1c1917);
}

.rs-ltt-archive-sub {
    font-size: 14px;
    color: #78716c;
    margin-top: 4px;
}

.rs-ltt-filter-group {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
}

.rs-ltt-filter-btn {
    padding: 8px 16px;
    border-radius: 9999px;
    font-size: 12px;
    font-weight: 500;
    border: 1px solid #e7e5e4;
    background-color: #ffffff;
    color: var(--rs-ltt-color-text, #57534e);
    cursor: pointer;
    transition: all 0.2s ease;
}

.rs-ltt-filter-btn:hover {
    background-color: #e7e5e4;
}

.rs-ltt-filter-btn-active {
    background-color: var(--rs-ltt-color-dark, #1c1917);
    color: var(--rs-ltt-color-white, #ffffff);
    border-color: var(--rs-ltt-color-dark, #1c1917);
    font-weight: 600;
}

/* ==========================================
   BOOKS ARCHIVE GRID
   ========================================== */
.rs-ltt-books-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    margin-bottom: 64px;
}

@media (min-width: 768px) {
    .rs-ltt-books-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .rs-ltt-books-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.rs-ltt-book-card {
    background-color: var(--rs-ltt-color-white, #ffffff);
    border-radius: 16px;
    border: 1px solid var(--rs-ltt-color-border, rgba(231, 229, 228, 0.8));
    padding: 24px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-sizing: border-box;
}

.rs-ltt-book-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.08);
}

.rs-ltt-book-cover-box {
    background-color: #f5f5f4;
    border-radius: 12px;
    padding: 32px;
    display: flex;
    justify-content: center;
    margin-bottom: 24px;
    position: relative;
    overflow: hidden;
    transition: background-color 0.3s ease;
}

.rs-ltt-book-card:hover .rs-ltt-book-cover-box {
    background-color: #fffbeb;
}

.rs-ltt-book-img {
    height: 240px;
    object-fit: cover;
    border-radius: 6px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    transition: transform 0.5s ease;
}

.rs-ltt-book-card:hover .rs-ltt-book-img {
    transform: scale(1.05);
}

.rs-ltt-format-tag {
    position: absolute;
    top: 12px;
    right: 12px;
    background-color: var(--rs-ltt-color-dark, #1c1917);
    color: var(--rs-ltt-color-white, #ffffff);
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 4px 10px;
    border-radius: 6px;
}

.rs-ltt-book-meta {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: var(--rs-ltt-color-primary, #d97706);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 8px;
}

.rs-ltt-book-title {
    font-family: var(--rs-ltt-font-serif, 'Playfair Display', serif);
    font-size: 20px;
    font-weight: 700;
    color: var(--rs-ltt-color-dark, #1c1917);
    margin-bottom: 8px;
    transition: color 0.2s ease;
}

.rs-ltt-book-card:hover .rs-ltt-book-title {
    color: var(--rs-ltt-color-primary, #d97706);
}

.rs-ltt-book-author {
    font-size: 12px;
    color: #78716c;
    margin-bottom: 12px;
}

.rs-ltt-book-desc {
    color: var(--rs-ltt-color-text, #57534e);
    font-size: 14px;
    line-height: 1.6;
    font-weight: 300;
    margin-bottom: 24px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.rs-ltt-book-bottom {
    padding-top: 16px;
    border-top: 1px solid #f5f5f4;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.rs-ltt-price-label {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #a8a29e;
    display: block;
    font-weight: 500;
}

.rs-ltt-price-val {
    font-size: 20px;
    font-weight: 700;
    color: var(--rs-ltt-color-dark, #1c1917);
}

.rs-ltt-btn-amazon {
    font-size: 12px;
    font-weight: 600;
    padding: 10px 16px;
    border-radius: 8px;
    background-color: #059669;
    color: var(--rs-ltt-color-white, #ffffff);
    text-decoration: none;
    transition: background-color 0.2s ease;
}

.rs-ltt-btn-amazon:hover {
    background-color: #047857;
}

/* ==========================================
   FOOTER GALLERY & DARK FOOTER
   ========================================== */
.rs-ltt-footer {
    margin-top: 80px;
}

.rs-ltt-quote-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}

@media (min-width: 768px) {
    .rs-ltt-quote-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 1024px) {
    .rs-ltt-quote-grid {
        grid-template-columns: repeat(6, 1fr);
    }
}

.rs-ltt-quote-card {
    position: relative;
    height: 192px;
    overflow: hidden;
    background-color: #0c0a09;
}

@media (min-width: 768px) {
    .rs-ltt-quote-card {
        height: 224px;
    }
}

.rs-ltt-quote-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.6;
    transition: transform 0.7s ease, opacity 0.7s ease;
}

.rs-ltt-quote-card:hover .rs-ltt-quote-img {
    transform: scale(1.05);
    opacity: 0.4;
}

.rs-ltt-quote-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(12, 10, 9, 0.9), rgba(12, 10, 9, 0.4), transparent);
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    text-align: center;
}

.rs-ltt-quote-text {
    font-family: var(--rs-ltt-font-serif, 'Playfair Display', serif);
    font-style: italic;
    font-size: 12px;
    color: #e7e5e4;
    line-height: 1.5;
}

.rs-ltt-footer-dark {
    background-color: #0c0a09;
    color: #a8a29e;
    padding: 64px 24px;
    border-top: 1px solid #292524;
}

.rs-ltt-footer-container {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.rs-ltt-footer-nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 32px;
    font-size: 14px;
    font-weight: 500;
    margin-top: 32px;
    margin-bottom: 40px;
}

.rs-ltt-footer-nav a {
    color: #d6d3d1;
    text-decoration: none;
    transition: color 0.2s ease;
}

.rs-ltt-footer-nav a:hover {
    color: #fbbf24;
}

.rs-ltt-footer-socials {
    display: flex;
    gap: 16px;
    margin-bottom: 48px;
}

.rs-ltt-footer-copy {
    padding-top: 32px;
    border-top: 1px solid #1c1917;
    width: 100%;
    font-size: 12px;
    color: #78716c;
    font-weight: 300;
}

/* Uniform size and 30px rounded corners for single post featured images */
.single-post .post-thumbnail img, 
.single-post .wp-post-image,
.single-post .entry-content .wp-post-image {
    width: 100%;
    height: 350px; /* Adjust this height if you want them taller or shorter */
    object-fit: cover;
    border-radius: 30px;
}