/* style.css */
:root {
    --navy: #041E42;
    --red: #BF0D3E;
    --white: #ffffff;
    --light-navy: #14325f;
    --gray: #333333;
    --light-gray: #a09e9eff;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
    text-decoration: none;
}

body {
    background-color: var(--navy);
    color: var(--white);
    line-height: 1.6;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0px auto;
    padding: 0 15px;
}

/* Header Styles */
header {
    background-color: var(--light-navy);
    padding: 15px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 50px;
    margin-right: 10px;
}

.logo h1 {
    color: var(--white);
    font-size: 1.5rem;
}

/* Navigation Styles */
nav {
    position: relative;
}

.menu-toggle {
    display: none;
    color: var(--white);
    font-size: 1.5rem;
    cursor: pointer;
}

.main-menu {
    display: flex;
    list-style: none;
}

.main-menu > li {
    position: relative;
    margin-left: 20px;
}

.main-menu > li > a {
    color: var(--white);
    text-decoration: none;
    padding: 10px 15px;
    display: block;
    font-weight: bold;
    transition: color 0.3s;
}

.main-menu > li > a:hover {
    color: var(--red);
}

.dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: var(--light-navy);
    width: 200px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
    z-index: 100;
    list-style: none; /* Added this line */
    padding: 0; /* Remove default padding */
}

.main-menu li:hover > .dropdown {
    opacity: 1;
    visibility: visible;
}

.dropdown li {
    position: relative;
}

.dropdown li a {
    color: var(--white);
    text-decoration: none;
    padding: 10px 15px;
    display: block;
    transition: background 0.3s;
}

.dropdown li a:hover {
    background-color: var(--navy);
}

.sub-dropdown {
    position: absolute;
    top: 0;
    left: 100%;
    background-color: var(--light-navy);
    width: 200px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
}

.dropdown li:hover > .sub-dropdown {
    opacity: 1;
    visibility: visible;
}

/* Section Header with View All Button */
.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 15px;
    margin-bottom: 30px;
}

.section-title {
    font-size: 2rem;
    color: var(--white);
    position: relative;
    margin-bottom: 30px;
    text-align: center;
}

.section-header .section-title {
    margin-bottom: 0;
    text-align: left;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background-color: var(--red);
}

.section-header .section-title::after {
    left: 0;
    transform: none;
}

.text-center {
    text-align: center;
}

.margin-top-25 {
    margin-top: 25px;
}

.view-all-btn {
    background-color: var(--red);
    color: var(--white);
    text-decoration: none;
    padding: 8px 20px;
    border-radius: 4px;
    font-weight: bold;
    transition: background-color 0.3s, transform 0.2s;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.view-all-btn:hover {
    background-color: #a00b33;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.lead {
    font-size: 18px;
    margin-bottom: 20px;
}

/* Featured Video Section - Two Columns */
.featured-video {
    margin-bottom: 40px;
    background-color: var(--light-navy);
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.featured-video.two-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    align-items: center;
}

.featured-video-container {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
}

.two-columns .featured-video-container {
    margin-bottom: 0;
}

.featured-video-container img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.3s;
}

.video-clickable {
    cursor: pointer;
}

.video-clickable:hover img {
    opacity: 0.7;
}

.play-icon-large {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: rgba(191, 13, 62, 0.8);
    color: var(--white);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2rem;
    opacity: 0.8;
    transition: opacity 0.3s, transform 0.3s;
    z-index: 2;
}

.video-clickable:hover .play-icon-large {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.1);
}

.featured-video-info h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.featured-video-info p {
    color: #ccc;
    margin-bottom: 15px;
}

/* Watch Now Button */
.play-video-btn {
    background-color: var(--red);
    color: var(--white);
    border: none;
    padding: 12px 30px;
    border-radius: 4px;
    font-weight: bold;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    display: inline-flex;
    align-items: center;
}

.play-video-btn:hover {
    background-color: #a00b33;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.4);
}

.play-video-btn:active {
    transform: translateY(0);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.play-video-btn::before {
    content: '\f04b';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    margin-right: 10px;
}

/* Video Grid */
.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.video-card {
    background-color: var(--light-navy);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s;
}

.video-card:hover {
    transform: translateY(-5px);
}

.video-thumbnail {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
}

.video-thumbnail img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.3s;
}

.video-clickable:hover img {
    opacity: 0.7;
}

.play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: rgba(191, 13, 62, 0.8);
    color: var(--white);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
    opacity: 0;
    transition: opacity 0.3s, transform 0.3s;
}

.video-clickable:hover .play-icon {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.1);
}

.video-info {
    padding: 15px;
}

.video-title-link {
    text-decoration: none;
    color: var(--white);
    display: block;
}

.video-title-link:hover h3 {
    color: var(--red);
}

.video-info h3 {
    font-size: 1rem;
    margin-bottom: 10px;
    transition: color 0.3s;
}

.video-info p {
    color: #ccc;
    font-size: 0.9rem;
}

.featured-video-info {
  padding: 20px;
    padding-top: 20px;
}

@media (max-width: 767px) {

    .video-info h3 {
        font-size: 1.3rem;
        margin-bottom: 10px;
        transition: color 0.3s;
    }

    .video-info p {
        color: #ccc;
        font-size: 1rem;
    }

}

/* Modal */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    z-index: 1000;
    justify-content: center;
    align-items: center;
}

.modal-content {
    width: 80%; 
    max-width: 1200px;
    position: relative;
}

.close-modal {
    position: absolute;
    top: -40px;
    right: 0;
    color: var(--white);
    font-size: 2rem;
    cursor: pointer;
    transition: color 0.3s;
}

.close-modal:hover {
    color: var(--red);
}

.modal-video-container {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
}

.modal-video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* Footer */
footer {
    background-color: var(--light-navy);
    padding: 50px 0 20px;
    text-align: center;
    position: relative;
}

.memorial-section {
    margin-bottom: 40px;
}

.memorial-photo {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 20px;
    border: 3px solid var(--white);
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
}

.memorial-name {
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.memorial-years {
    font-size: 1.2rem;
    color: #ccc;
    margin-bottom: 15px;
}

.memorial-quote {
    font-style: italic;
    font-size: 24px;
    max-width: 600px;
    margin: 0 auto 20px;
    padding: 0 20px;
}

/* Make ads responsive */
@media (max-width: 480px) {
    .memorial-quote br {
        display: none;
    }
}



.memorial-message {
    max-width: 800px;
    margin: 0 auto 30px;
    padding: 0 20px;
}

.memorial-message-legacy {
    max-width: 800px;
    font-size: 24px;
    margin: 0 auto 30px;
    padding: 0 20px;
}

.footer-divider {
    width: 100px;
    height: 2px;
    background-color: var(--red);
    margin: 0 auto 30px;
}

.copyright {
    color: #ccc;
    font-size: 0.9rem;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .featured-video.two-columns {
        grid-template-columns: 1fr;
    }
    
    .featured-video-container {
        margin-bottom: 20px;
    }
}

@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }
    
    .main-menu {
        position: absolute;
        top: 100%;
        right: 0;
        flex-direction: column;
        background-color: var(--light-navy);
        width: 250px;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s;
        z-index: 100;
    }
    
    .main-menu.active {
        opacity: 1;
        visibility: visible;
    }
    
    .main-menu > li {
        margin-left: 0;
    }
    
    .dropdown, .sub-dropdown {
        position: static;
        width: 100%;
        box-shadow: none;
        opacity: 1;
        visibility: visible;
        display: none;
    }
    
    .dropdown.active, .sub-dropdown.active {
        display: block;
    }
    
    .dropdown li a, .sub-dropdown li a {
        padding-left: 30px;
    }
    
    .sub-dropdown li a {
        padding-left: 45px;
    }
    
    .header-content {
        flex-wrap: wrap;
    }
    
    .section-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .view-all-btn {
        margin-top: 10px;
    }
    .section-title::after {
        margin-bottom: 10px;
    }
    .section-title {
        font-size: 1.6rem;
    }
    .featured-video {
        margin-bottom: 20px;
        background-color: var(--light-navy);
        padding: 0px;
    }

    .desktop-br {
        display: none;
    }
}

/* Featured Category Video */
.featured-category-video {
    margin-bottom: 30px;
}

.featured-video-info .video-title-link {
    display: block;
    color: var(--white);
    text-decoration: none;
}

.featured-video-info .video-title-link:hover h3 {
    color: var(--red);
}

.featured-video-info .video-title-link:hover .fa-arrow-right {
    transform: translateX(5px);
}

.fa-arrow-right {
    margin-left: 5px;
    transition: transform 0.3s ease;
}

.featured-video-info h3 {
    transition: color 0.3s;
}

/* Make sure the grid works properly when featured videos are absent */
.section-header + .video-grid {
    margin-top: 20px;
}


/* AD STYLES */

.ad-container {
    margin: 20px 0;
    width: 100%;
    display: flex;
    justify-content: center;
}

.ad-wrapper {
    position: relative;
    max-width: 100%;
    border-radius: 2px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.ad-link {
    display: block;
}

.ad-image {
    max-width: 100%;
    height: auto;
    display: block;
}

.ad-info {
    position: absolute;
    top: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.6);
    padding: 2px 8px;
    border-bottom-left-radius: 4px;
}

.ad-label {
    color: #ffffff;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}


/* General ad styles */
.ad-container {
    display: block;
    width: 100%;
    margin: 20px 0;
    position: relative;
    text-align: center;
}

.ad-wrapper {
    display: inline-block;
    position: relative;
}

.ad-link {
    display: block;
}

.ad-image {
    display: block;
    max-width: 100%;
    height: auto;
}

.ad-info {
    position: absolute;
    top: 0;
    right: 0;
    background-color: rgba(0,0,0,0.6);
    padding: 2px 5px;
    font-size: 10px;
}

.ad-label {
    color: #fff;
    text-transform: uppercase;
    font-family: Arial, sans-serif;
}

/* Specific ad zone styles */
.top-banner .ad-container {
    margin: 0 0 20px 0;
}

.ad-above-player {
    margin-bottom: 20px;
}

.ad-below-player {
    margin-top: 20px;
    margin-bottom: 20px;
}

.sidebar .ad-container {
    margin-bottom: 30px;
}

.related-item.ad {
    background: none;
    padding: 0;
    box-shadow: none;
}

/* Ad sizes */

/* .top-banner .ad-image {
    width: 728px;
    height: 90px;
} */ 
.top-banner .ad-image, 
.ad-container .ad-image, 
.ad-above-player .ad-image,
.ad-below-player .ad-image, 
.related-item.ad .ad-image {
    width: 1000px;
    height: 120px;
}

.sidebar .ad-image {
    width: 300px;
    height: 250px;
}

/* Make ads responsive */
@media (max-width: 768px) {
    .top-banner .ad-image, 
    .ad-container .ad-image, 
    .ad-above-player .ad-image,
    .ad-below-player .ad-image, 
    .related-item.ad .ad-image {
        width: 100%;
        height: auto;
    }
    
    .sidebar .ad-image {
        width: 100%;
        height: auto;
    }
}

.video-item.ad-item {
    grid-column: 1 / -1; /* Make ad take full width if using CSS Grid */
    background: none;
    padding: 0;
    margin: 20px 0;
    display: flex;
    justify-content: center;
}

.ad-placeholder {
    height: 120px;
    background: #f8f8f8;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    font-size: 14px;
    color: #777;
}

/* Admin edit link styling */
.admin-edit-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(0, 0, 0, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 3px;
    padding-right: 6px;
    transition: all 0.2s ease;
}

.admin-edit-link:hover {
    background: rgba(0, 0, 0, 0.9);
    border-color: rgba(255, 255, 255, 0.7);
}

.admin-edit-link .video-duration {
    background: transparent;
    margin: 0;
    padding: 0 5px;
    position: static;
}

.admin-edit-link .edit-icon {
    margin-left: 3px;
    font-size: 0.8em;
    color: #4CAF50;
}

.admin-edit-link:hover .edit-icon {
    color: #fff;
}


/* Social Sharing Section Styles */
.social-sharing {
    background-color: var(--light-navy);
    padding: 30px 0;
    margin: 30px 0;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.sharing-content {
    text-align: center;
}

.sharing-content h3 {
    font-size: 24px;
    margin-bottom: 10px;
    color: var(--white);
}

.sharing-content p {
    margin-bottom: 20px;
    color: var(--white);
}

.sharing-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    max-width: 800px;
    margin: 0 auto;
}

.share-btn {
    display: flex;
    align-items: center;
    padding: 10px 20px;
    border-radius: 30px;
    color: white;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 16px;
    min-width: 120px;
    justify-content: center;
}

.share-btn i {
    margin-right: 8px;
    font-size: 18px;
}

/* Social media brand colors */
.share-btn.facebook {
    background-color: #3b5998;
}
.share-btn.facebook:hover {
    background-color: #2d4373;
}

/* .share-btn.twitter {
    background-color: #1da1f2;
}
.share-btn.twitter:hover {
    background-color: #0c85d0;
} */
 /* X (formerly Twitter) */
.share-btn.x-twitter {
    background-color: #000000;
}
.share-btn.x-twitter:hover {
    background-color: #333333;
}

.share-btn.whatsapp {
    background-color: #25d366;
}
.share-btn.whatsapp:hover {
    background-color: #128c7e;
}

.share-btn.linkedin {
    background-color: #0077b5;
}
.share-btn.linkedin:hover {
    background-color: #005582;
}

.share-btn.telegram {
    background-color: #0088cc;
}
.share-btn.telegram:hover {
    background-color: #006699;
}

.share-btn.reddit {
    background-color: #ff4500;
}
.share-btn.reddit:hover {
    background-color: #cc3700;
}

.share-btn.email {
    background-color: #3498db;
}
.share-btn.email:hover {
    background-color: #2980b9;
}

.share-btn.pinterest {
    background-color: #bd081c;
}
.share-btn.pinterest:hover {
    background-color: #8c0615;
}

.share-btn.copy-link {
    background-color: #555;
}
.share-btn.copy-link:hover {
    background-color: #333;
}

/* For tablets */
@media (max-width: 768px) {
    .sharing-buttons {
        max-width: 600px;
    }
    
    .share-btn {
        min-width: 110px;
        padding: 8px 15px;
    }
}

/* For smaller screens */
@media (max-width: 576px) {
    .sharing-buttons {
        flex-direction: column;
        align-items: center;
        max-width: 100%;
    }
    
    .share-btn {
        width: 80%;
        justify-content: center;
        margin-bottom: 5px;
    }
}

/* Copy link confirmation message */
.copy-message {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background-color: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    z-index: 1000;
    display: none;
}

.copy-message.show {
    display: block;
    animation: fadeInOut 2s ease-in-out;
}

@keyframes fadeInOut {
    0% { opacity: 0; }
    15% { opacity: 1; }
    85% { opacity: 1; }
    100% { opacity: 0; }
}


/* Books Grid Styles */
.book-grid {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
gap: 1.5rem;
margin-bottom: 2rem;
}

.book-card {
/* background-color: var(--white); */
border-radius: 8px;
overflow: hidden;
box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
transition: transform 0.2s, box-shadow 0.2s;
}

.book-card:hover {
transform: translateY(-5px);
box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.book-thumbnail {
position: relative;
overflow: hidden;
border-radius: 8px 8px 0 0;
}

.book-thumbnail img {
width: 100%;
height: 600px;
object-fit: cover;
transition: transform 0.3s;
}

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

.book-details {
position: absolute;
bottom: 10px;
left: 10px;
color: var(--gray);
font-size: 0.9rem;
background: rgba(0,0,0,0.6);
padding: 5px 10px;
border-radius: 4px;
display: flex;
gap: 10px;
align-items: center;
}

.book-pages {
background: rgba(255,255,255,0.2);
padding: 2px 6px;
border-radius: 3px;
color: white;
}

.bestseller-badge {
background: #ab0000;
color: white;
padding: 2px 6px;
border-radius: 3px;
font-weight: 600;
font-size: 0.85rem;
}

.book-info {
padding: 1rem;
background: var(--white);
min-height: 240px;
}

.book-title {
font-size: 1.2rem;
margin-bottom: 0.5rem;
font-weight: 600;
color: var(--navy);
line-height: 1.3;
/* Limit to 2 lines */
display: -webkit-box;
-webkit-line-clamp: 2;
-webkit-box-orient: vertical;
overflow: hidden;
}

.author-name {
font-size: 0.95rem;
color: var(--light-gray);
margin-bottom: 0.75rem;
}

.book-description {
color: var(--light-gray);
font-size: 0.9rem;
line-height: 1.5;
/* Limit to 3 lines */
display: -webkit-box;
-webkit-line-clamp: 3;
-webkit-box-orient: vertical;
overflow: hidden;
margin-bottom: 1rem;
}

.amazon-link {
display: inline-flex;
align-items: center;
gap: 8px;
color: #ff9900;
font-weight: 600;
text-decoration: none;
font-size: 1rem;
transition: color 0.3s;
}

.amazon-link:hover {
color: #cc7a00;
}

.amazon-link i {
font-size: 1.3rem;
}

.compact-books-grid {
    margin-bottom: 45px;
}

.compact-book-card {
  display: flex;
  align-items: center;
  background: var(--white);
  border-radius: 6px;
  box-shadow: 0 1px 6px rgba(0,0,0,0.1);
  padding: 8px;
  gap: 12px;
  transition: box-shadow 0.2s ease;
}

.compact-book-card:hover {
  box-shadow: 0 3px 12px rgba(0,0,0,0.15);
}

.compact-book-thumbnail {
  flex-shrink: 0;
  width: 80px;
  height: 120px; /* tall image */
  overflow: hidden;
  border-radius: 4px;
}

.compact-book-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.compact-book-info {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.compact-book-title {
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  max-height: calc(1.2em * 4); /* to enforce max height */
  word-break: break-word;

  font-size: 1rem;
  font-weight: 600;
  color: var(--navy);
  margin: 0 0 6px 0;
  line-height: 1.2;
}

.compact-book-link {
  font-size: 0.9rem;
  font-weight: 600;
  color: #ff9900;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.compact-book-link:hover {
  color: #cc7a00;
}

.compact-book-link i {
  font-size: 1.1rem;
}

.columns-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.columns-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.columns-5 {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 8px;
}

.charlie-kirk-book-list {
    counter-reset: book-counter;
    padding-left: 30px;
    margin-left: 0px;
    background-color: var(--navy);
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    padding: 20px;
    padding-left: 50px;
    padding-right: 50px;
    list-style-type: none; /* Hide original numbering */
}
.charlie-kirk-book-list li {
    counter-increment: book-counter;
    margin-bottom: 15px;
    position: relative;
    padding: 5px 20px;
}
.charlie-kirk-book-list li::before {
    content: counter(book-counter) ".";
    position: absolute;
    top: 4px;
    left: -35px;
    margin-right: 20px;
    color: var(--light-navy);
    font-weight: bold;
    font-size: 1.6em;
}
.charlie-kirk-book-list li p {
    margin: 5px 0;
}
.charlie-kirk-book-list li:nth-child(even) {
    background-color: var(--light-navy);
}