/* Palatino Font Family */
@font-face {
    font-family: 'Palatino LT';
    src: url('../fonts/web/Palatino-LT-Light.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Palatino LT';
    src: url('../fonts/web/Palatino-LT-Roman.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Palatino LT';
    src: url('../fonts/web/Palatino-LT-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Palatino LT';
    src: url('../fonts/web/Palatino-LT-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Palatino LT';
    src: url('../fonts/web/Palatino-LT-Black.ttf') format('truetype');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Palatino BoldItalic';
    src: url('../fonts/web/Palatino-BoldItalic.ttf') format('truetype');
    font-weight: 700;
    font-style: italic;
    font-display: swap;
}

/* Main/Common */
.main-header {
    transition: all 0.5s cubic-bezier(0.30, 1, 0.35, 1);
}

.home-menu-black .nav-fixed-top {
    background: rgba(251, 250, 232, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid #c7c7c7;
    animation: slideDown 0.5s cubic-bezier(0.30, 1, 0.35, 1);
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }

    to {
        transform: translateY(0);
    }
}

.nav-fixed-top .top-header {
    display: flex !important;
    /* Override display:none in style.css */
    padding: 10px 0 !important;
}

.nav-fixed-top .container {
    display: flex !important;
    align-items: center;
    justify-content: space-between;
    transition: all 0.5s cubic-bezier(0.30, 1, 0.35, 1);
    max-width: 100%;
    padding: 0 50px;
}

.nav-fixed-top .header-container5 {
    padding: 0 !important;
    text-align: right;
    flex-grow: 1;
}

.nav-fixed-top .menu-nav {
    text-align: right;
}

.nav-fixed-top .nav-holder .menu-container {
    border: none;
}

body {
    font-family: 'Palatino LT', serif;
    letter-spacing: 1px;
    color: var(--body-color);
    background-color: var(--body-background);
    overflow-x: hidden;
}

.egm-hover-trans {
    -webkit-transition: all 0.5s cubic-bezier(0.30, 1, 0.35, 1) 0s;
    -moz-transition: all 0.5s cubic-bezier(0.30, 1, 0.35, 1) 0s;
    -o-transition: all 0.5s cubic-bezier(0.30, 1, 0.35, 1) 0s;
    -ms-transition: all 0.5s cubic-bezier(0.30, 1, 0.35, 1) 0s;
    transition: all 0.5s cubic-bezier(0.30, 1, 0.35, 1) 0s;
}

.egm-hover-trans:hover {
    transform: translateY(-5px);
}

.egm-btn {
    border-radius: 35px;
    background: white;
    text-transform: uppercase;
    font-size: 13px;
    font-weight: 600;
    padding: 13px 26px;
    line-height: 1;
}

.egm-btn:hover {
    background: #fde9c6;

}

.egm-btn:hover {
    background: #fde9c6;
}

.egm-btn-dark {
    background: #1d1b1c;
    color: white;
}

.egm-btn-dark:hover {
    background: #31291a;
    color: white;
}

/* Form Button */
.egm-form-btn {
    border-radius: 35px;
    text-transform: uppercase;
    font-size: 16px;
    font-weight: 600;
    padding: 19px 37px;
    line-height: 1;
    background: #1d1b1c;
    color: white;
    min-width: 250px;
}

.egm-form-btn:hover {
    background: #31291a;
    color: white;
}

/* Form Button */

.top-header {
    position: relative;
}

/* .top-header::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100vw;
    height: 3px;
    background-color: var(--primary-color);
    background: linear-gradient(to right, #dbb87d, #a58651);
    z-index: -1;
} */

.home-menu-black .nav-button {
    position: absolute;
    right: 0;
    top: 11px;
}

/* heading */
.home-heading {
    display: inline-block;
    border: 1px solid var(--primary-color);
    background-color: var(--primary-color);
    color: var(--body-color);
    border-radius: 35px;
    padding: 17px 40px;
    font-size: 1.1em;
    margin-bottom: 10px;
    letter-spacing: 3px;
    min-width: 250px;
    text-align: center;
}

.home-heading.black-heading-btn {
    border: 1px solid var(--body-color);
    background-color: var(--btn-dark-color);
    color: white;
}

.home-heading-secondary h1 {
    font-size: 2.1em;
    font-weight: 700;
    letter-spacing: 4px;
}

.home-heading-secondary .tagline {
    font-size: 1.2em;
    font-weight: 600;
    letter-spacing: 1px;
    color: var(--headings-color);
    font-family: 'Palatino BoldItalic';
}

.home-heading-secondary .tagline-sub,
.sub-page-container .tagline-sub {
    font-size: 1em;
    font-weight: 400;
    letter-spacing: 1px;
    color: #595959;
    font-family: 'Palatino LT';
    font-style: italic;
}

/* Logo */
.logo {
    transition: all 0.5s cubic-bezier(0.30, 1, 0.35, 1);
}

.logo img {
    /* background: white; */
    width: 320px;
    user-select: none;
    -webkit-user-drag: none;
}

.nav-fixed-top .logo img {
    width: 200px;
}

.nav-fixed-top .logo-5 {
    text-align: left;
}

/* Menu */
.menu-item a {
    font-weight: 400;
    text-transform: uppercase;
}

.menu-nav .menu-item:not(:last-child) a {
    border-right: 1px solid var(--primary-color);
    height: 11px;
}

.menu-nav .menu-item {
    margin: 0;
    padding-top: 12px;
    padding-bottom: 12px;
}

.menu-nav li a {
    padding: 0;
    line-height: 1;
    font-size: 13px;
    font-weight: 500;
    padding-right: 12px;
    padding-left: 12px;
}

.nav-holder .menu-container {
    display: inline-block;
    border: 1px solid #e7dbc2;
}

/* Current Issue Home */
.current-issue-container {
    border-radius: 50%;
    background: linear-gradient(to bottom, #f3f2e8, #ddb263);
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 40px auto;
    width: 90%;
    max-width: 590px;
    aspect-ratio: 1/1;
    padding: 10px;
    overflow: hidden;
}

.current-issue-img-box {
    position: relative;
    display: inline-flex;
    justify-content: center;
    align-items: center;
}

.current-issue img {
    width: 100%;
    max-width: 310px;
    margin: 0;
    box-shadow: 0px 0px 12px rgba(0, 0, 0, 0.4);
    display: block;
}

.current-issue-btn {
    position: absolute;
    top: calc(100% + 15px);
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;
    white-space: nowrap;
    font-size: 13px;
    padding: 12px 20px;
}

.current-issue-btn:hover {
    transform: translateX(-50%) translateY(-3px);
}

@media (min-width: 992px) {
    .current-issue img {
        max-width: 315px;
    }
}

@media (max-width: 767px) {
    .current-issue img {
        max-width: 230px;
    }
}

@media (max-width: 575px) {
    .current-issue img {
        max-width: 185px;
    }
    .current-issue-btn {
        top: calc(100% + 5px);
        font-size: 10px;
        padding: 5px 12px;
    }
}

@media (max-width: 380px) {
    .current-issue img {
        max-width: 145px;
    }
    .current-issue-btn {
        top: calc(100% + 4px);
        font-size: 9px;
        padding: 4px 10px;
    }
}

.magazine-iframe {
    border: none;
    width: 100%;
    height: 699px;
}


/* Hard Truth Section */
.hard-truth-container {
    margin-bottom: 5em;
}


.hard-truth-carousel .slick-track {
    display: flex !important;
}

.hard-truth-carousel .slick-slide {
    height: auto !important;
    display: flex !important;
    flex-direction: column;
}

.hard-truth-carousel .slick-slide > div {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.hard-truth-carousel-container {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.hard-truth-item {
    border: 1px solid var(--border-secondary);
    height: 100%;
}

.hard-truth-item a {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    text-decoration: none;
}

.hard-truth-item img {
    width: 100%;
    object-fit: cover;
}

.hard-truth-main-container {
    padding: 35px 20px 8px 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.hard-truth-main-container .hard-truth-profile .hard-truth-date {
    font-size: 12px;
    color: #666;
}

.hard-truth-item h4 {
    font-size: 20px;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.hard-truth-item .hard-truth-profile {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 15px;
    margin-bottom: 7px;
}

.hard-truth-item .hard-truth-profile img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
}

.hard-truth-item .hard-truth-profile p {
    margin: 0;
    text-transform: uppercase;
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 1px;
    color: var(--body-color);
    line-height: 1.4 !important;
}

.egm-carousel .slick-slide {
    margin-right: 10px;
    margin-left: 10px;
}

.egm-carousel {
    padding: 0 40px;
}

.egm-carousel .slick-next::before,
.egm-carousel .slick-prev::before {
    color: var(--primary-color);
    font-size: 34px;
    opacity: 1;
}

.egm-carousel .slick-prev,
.egm-carousel .slick-next {
    width: 34px;
    z-index: 999;
}

.egm-carousel.archive-carousel .slick-prev,
.egm-carousel.archive-carousel .slick-next {
    margin-top: -35px;
}

.egm-carousel .slick-prev:hover::before,
.egm-carousel .slick-next:hover::before {
    color: var(--btn-dark-color);
}

.egm-carousel .slick-prev {
    left: 0px;
}

.egm-carousel .slick-next {
    right: 0px;
}

.egm-carousel .slick-dots li,
.egm-carousel .slick-dots li button {
    width: 10px;
    height: 10px;
    padding: 0;
}

.egm-carousel .slick-list {
    padding-top: 10px !important;
    padding-bottom: 10px !important;
}

.egm-carousel .slick-dots li {
    margin: 0 7px;
}

.egm-carousel .slick-dots li button::before {
    font-family: 'slick';
    font-size: 0;
    /* Hide default dot content */
    line-height: 10px;
    position: absolute;
    top: 0;
    left: 0;
    width: 10px;
    height: 10px;
    content: '';
    text-align: center;
    opacity: 0.5;
    /* Inactive dot opacity */
    color: transparent;
    /* Ensure no text color shows */
    background-color: var(--primary-color);
    border-radius: 50%;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.egm-carousel .slick-dots li.slick-active button::before {
    opacity: 1;
    /* Active dot full opacity for inner circle */
    box-shadow: 0 0 0 4px rgba(var(--primary-rgb), 0.3);
    /* Outer circle effect */
}

.signup-container {
    margin: 120px 0 0 0;
}

.signup-container img {
    max-width: 800px;
    width: 100%;
}


/* Archive - Home */
.archive-container {
    padding-top: 40px;
    padding-bottom: 40px;
}


.archive-container .archive-item img {
    width: 100%;
    object-fit: cover;
    box-shadow: 0px 0px 10px rgba(156, 156, 156, 0.2);
}

.archive-container .archive-item p {
    text-align: center;
    color: #282828;
    font-weight: 500;
    margin-top: 11px;
    font-size: 15px;
    margin-bottom: 0;
}

/* Archives Sub Page */
.archives-section {
    padding-bottom: 50px;
}

.archive-list {
    margin-top: 30px;
}

.archive-magazine-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.archive-year {
    font-size: 28px;
    font-weight: 700;
    color: var(--headings-color);
    line-height: 1;
    font-family: 'Palatino LT', serif;
    writing-mode: vertical-rl;
    text-orientation: upright;
}

.archive-thumbnail {
    flex: 1;
    max-width: 170px;
}

.archive-thumbnail img {
    /* border: 5px solid var(--primary-color); */
    box-shadow: 0px 0px 10px rgba(156, 156, 156, 0.2);
    transition: transform 0.3s ease;
    width: 100%;
    display: block;
}

.archive-thumbnail:hover img {
    transform: scale(1.03);
}

/* Current Issue Actions */
.issue-action-link {
    color: var(--headings-color);
    font-weight: 700;
    font-size: 17px;
    text-decoration: none;
    font-family: 'Palatino LT', serif;
    transition: color 0.3s ease;
}

.issue-action-link:hover {
    color: var(--primary-color);
}

.issue-btn-box {
    border: 1px solid var(--border-secondary);
    padding: 10px 30px;
    border-radius: 35px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.issue-btn-box:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: #fff !important;
}

/* SUB PAGES */
.sub-page-container {
    padding-top: 200px;
    padding-bottom: 100px;
}

.sub-page-heading {
    display: inline-block;
    border: 1px solid var(--border-secondary);
    font-weight: 400;
    border-radius: 28px;
    padding: 10px 31px;
    font-size: 1.45em;
    letter-spacing: 1px;
}

.sub-page-container .about-us h2 {
    font-size: 1.9em;
    font-weight: 600;
    margin-bottom: 10px;
}

.sub-page-container .about-us h4 {
    font-size: 1.5em;
    font-weight: 600;
    margin-bottom: 2px;
}

.sub-page-container p {
    font-size: 1.1em;
}

.sub-page-container .tagline {
    font-size: 1.2em;
    font-weight: 700;
    font-style: italic;
    color: #000000;
    font-family: 'Palatino BoldItalic';
}

/* Hard Truth Page */
.hard-truth-heading {
    padding: 20px 25px 20px 0;
}

.hard-truth-heading h2 {
    color: var(--headings-color);
    font-weight: 700;
    font-size: 43px;
    line-height: 1;
}

.hard-truth-heading .hard-truth-profile {
    display: flex;
    align-items: center;
    gap: 8px;
}

.hard-truth-heading .hard-truth-profile img {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    object-fit: cover;
}

.hard-truth-heading .profile-details {
    display: flex;
    flex-direction: column;
}

.hard-truth-heading .profile-details p {
    margin: 0;
    font-size: 16px;
    font-weight: 500;
    color: var(--headings-color);
    margin-bottom: 3px;
    line-height: 1 !important;
}

.hard-truth-heading .share-dropdown .dropdown-menu-dark .dropdown-item:active {
    color: #fff;
    background-color: var(--primary-color);
}

.hard-truth-heading .share-dropdown #share-btn {
    color: var(--headings-color);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
}

.hard-truth-heading .share-dropdown {
    line-height: 1;
}

.image-container-framed {
    border: 1px solid var(--primary-color);
    padding: 15px;
}

.image-container-framed img {
    width: 100%;
    display: block;
}

/* .hard-truth-post-text p:first-of-type span:first-child {
    font-size: 55px;
    font-weight: 400;
    line-height: 4px;
    float: left;
    margin-right: 0;
    color: var(--primary-color);
    font-family: 'Palatino LT', serif;
} */

.hard-truth-post-text p {
    margin-bottom: 25px;
}

.hard-truth-post-text blockquote {
    position: relative;
    margin: 20px 0;
    padding: 50px 30px 30px 30px;
    border: none !important;
    border-left: none !important;
    font-weight: 700;
    font-size: 1.2em;
    line-height: 1.7;
    font-style: italic;
}

.hard-truth-post-text blockquote p {
    font-weight: 700;
    margin-bottom: 0;
}

.hard-truth-post-text blockquote::before {
    content: "\201C";
    position: absolute;
    left: 15px;
    top: 5px;
    font-size: 4.5rem;
    line-height: 1;
    color: var(--primary-color);
    opacity: 0.35;
    font-family: Georgia, 'Times New Roman', serif;
    pointer-events: none;
    user-select: none;
}

/* .hard-truth-post-text blockquote::after {
    content: "\201D";
    position: absolute;
    right: 15px;
    bottom: -15px;
    font-size: 4.5rem;
    line-height: 1;
    color: var(--primary-color);
    opacity: 0.35;
    font-family: Georgia, 'Times New Roman', serif;
    pointer-events: none;
    user-select: none;
} */

.hard-truths {
    margin-top: 40px;
}

/* FORMS */
.egm-form {
    padding-top: 3em;
    padding-bottom: 3em;
}

.form-box {
    margin-bottom: 1.5em;
    border: 1px solid #1d1d1d;
    display: flex;
    align-items: center;
    background-color: transparent;
    padding: 0 15px;
    min-height: 55px;
}

.form-box:has(textarea) {
    align-items: flex-start;
    padding-top: 18px;
}

.form-box label {
    color: #1d1d1d;
    font-weight: 400;
    font-size: 18px;
    margin-bottom: 0;
    white-space: nowrap;
    margin-right: 10px;
    font-family: 'Palatino LT', serif;
    flex-shrink: 0;
}

.form-box label::after {
    content: " :";
}

.form-box .form-control,
.form-box .form-select {
    flex: 1;
    border: none;
    background-color: transparent;
    border-radius: 0;
    min-height: unset;
    height: 100%;
    font-size: 19px;
    color: #1d1d1d;
    padding: 0;
    box-shadow: none;
    outline: none;
    font-family: 'Palatino LT', serif;
}

.form-box .form-control {
    padding: 0;
}

.form-box .form-select {
    padding-top: 0;
    padding-bottom: 0;
    padding-left: 0;
    cursor: pointer;
}

.form-box .form-control:focus,
.form-box .form-select:focus {
    box-shadow: none;
    outline: none;
    background-color: transparent;
}

.form-box .form-control::placeholder,
.form-box .form-select::placeholder {
    color: transparent !important;
}

/* Footer Styles */
.egm-footer {
    background-color: #1d1b1c;
    color: #e2e2e2;
    padding-top: 80px;
    font-family: 'Palatino LT', serif;
}

.egm-footer h5 {
    color: #ffffff;
    font-size: 1.3em;
    font-weight: 600;
    margin-bottom: 25px;
    letter-spacing: 1px;
}

.egm-footer a {
    color: #999999;
    text-decoration: none;
    transition: color 0.3s ease;
}

.egm-footer a:hover {
    color: var(--primary-color);
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 15px;
}

.footer-links li a {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    font-weight: 400;
}

.footer-links li a i {
    font-size: 0.7em;
    color: #555;
    transition: color 0.3s ease;
}

.footer-links li a:hover i {
    color: var(--primary-color);
}

.footer-email {
    margin-top: 25px;
    font-size: 14px;
    color: #777;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-map {
    margin-top: 20px;
    opacity: 0.2;
}

.footer-bottom {
    border-top: 1px dashed #333333;
    padding: 30px 0;
    margin-top: 60px;
}

.copyright {
    font-size: 13px;
    color: #666;
    margin-bottom: 0;
}

.copyright a {
    color: #888;
}

.footer-social-icons {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: flex-end;
    gap: 15px;
}

.footer-social-icons li a {
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    transition: transform 0.3s ease, background 0.3s ease;
}

.footer-social-icons li a:hover {
    transform: translateY(-3px);
    background: #ffffff;
    color: #1d1b1c;
}

/* Scroll offset for sticky header */
:target {
    scroll-margin-top: 80px;
}

#mission,
#vision {
    scroll-margin-top: 80px;
}

.hard-truth-post-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #333;
}

.hard-truth-post-text p {
    margin-bottom: 1.5rem;
}

.hard-truth-post-text p:first-of-type::first-letter {
    font-size: 3.5rem;
    float: left;
    line-height: 0.8;
    margin-right: 0.5rem;
    margin-top: 0.2rem;
    font-weight: bold;
    color: var(--primary-color);
}

/* .hard-truth-post-text strong {
    color: var(--primary-color);
    font-size: 1.2rem;
    display: block;
    margin-top: 2rem;
} */

/* Custom Share Popup Styles */
.custom-share-popup-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 1050;
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(5px);
}

.custom-share-popup-content {
    background: #fff;
    padding: 2.5rem;
    border-radius: 12px;
    width: 90%;
    max-width: 500px;
    text-align: center;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    animation: slideUpShare 0.3s ease;
}

@keyframes slideUpShare {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.close-share-popup {
    position: absolute;
    top: 15px;
    right: 20px;
    cursor: pointer;
    font-size: 1.8rem;
    color: #555;
    transition: 0.2s;
    line-height: 1;
}

.close-share-popup:hover {
    color: #000;
}

.share-logo {
    height: 40px;
    object-fit: contain;
}

.share-buttons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
    gap: 10px;
}

.share-btn-container{
    font-size: 12px;
    font-weight: 600;
    color: #323232;
}

.share-btn-item {
    border: none;
    padding: 10px;
    border-radius: 6px;
    color: #fff;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: opacity 0.2s;
}

.share-btn-item:hover {
    opacity: 0.85;
}

.share-btn-item.facebook {
    background: #1877F2;
}

.share-btn-item.twitter {
    background: #1DA1F2;
}

.share-btn-item.whatsapp {
    background: #25D366;
}

.share-btn-item.linkedin {
    background: #0A66C2;
}

.share-btn-item.telegram {
    background: #0088cc;
}

.share-btn-item.email {
    background: #5c5c5c;
}

.share-btn-item.reddit {
    background: #FF4500;
}

.share-btn-item.pinterest {
    background: #E60023;
}

.share-icon-img {
    width: 20px;
    height: 20px;
    object-fit: contain;
    pointer-events: none;
}


/* RESPONSIVE */

/* Mobile Header Fix */
@media (max-width: 1024px) {
    .top-header-5 {
        display: flex !important;
        justify-content: space-between !important;
        align-items: center !important;
        width: 100% !important;
    }

    .logo-5 {
        text-align: left !important;
        flex: 0 1 auto !important;
        max-width: 70% !important;
    }

    .logo-5 img {
        max-height: 50px !important;
        /* width: auto !important; */
    }

    .nav-button-holder-5 {
        flex: 0 0 auto !important;
        text-align: right !important;
    }

    /* Adjust sticky header padding */
    .nav-fixed-top .header-container5 {
        padding: 10px 0 !important;
    }
}

@media (max-width: 991px) {
    .container {
        padding-left: 25px;
        padding-right: 25px;
    }

    .logo img {
        width: 280px;
    }

    .sub-page-container {
        padding-top: 150px;
        padding-bottom: 70px;
    }

    .sub-page-heading {
        padding: 9px 25px;
        font-size: 1.45em;
    }

    .sub-page-container .about-us h2 {
        font-size: 1.45em;
    }

    .sub-page-container .about-us h4 {
        font-size: 1.1em;
    }

    .sub-page-container p {
        font-size: 1rem;
    }

    .archive-year {
        font-size: 22px;
    }

    .archive-magazine-item {
        gap: 10px;
    }

    .hard-truth-heading h2 {
        font-size: 35px;
    }

    .egm-carousel {
        padding: 0 35px;
    }

    .egm-carousel .slick-prev,
    .egm-carousel .slick-next {
        width: 35px;
    }

    .egm-carousel .slick-next::before,
    .egm-carousel .slick-prev::before {
        font-size: 30px;
    }

    .archive-container .archive-item p {
        font-size: 13px;
    }

    .hard-truth-post-text p:first-of-type::first-letter {
        font-size: 3.2rem;
    }
}

@media (max-width: 767px) {

    .logo img {
        width: 220px;
    }

    .home-heading {
        font-size: 1.2em;
        padding: 10px 30px;
        letter-spacing: 2px;
    }

    .home-heading-secondary h1 {
        font-size: 1.8em;
    }

    .home-heading-secondary .tagline {
        font-size: 1em;
    }

    .home-heading-secondary .tagline-sub,
    .sub-page-container .tagline-sub {
        font-size: .9em;
    }

    .sub-page-container {
        padding-top: 90px;
        padding-bottom: 50px;
    }

    .sub-page-heading {
        padding: 9px 25px;
        font-size: 1.4em;
    }

    .hard-truth-heading h2 {
        font-size: 30px;
    }

    .hard-truth-heading {
        padding: 10px 10px 10px 0;
    }

    .hard-truth-heading .share-dropdown #share-btn {
        font-size: 10px;
    }

    .hard-truth-post-date {
        font-size: 10px !important;
    }

    .hard-truth-post-text {
        font-size: .9em;
    }

    .egm-btn {
        padding: 9px 18px;
        font-size: 11px;
    }


    .hard-truth-post-text blockquote {
        padding: 20px 40px;
        margin: 25px 0;
    }

    .hard-truth-post-text blockquote::before {
        left: 5px;
        top: 0;
        font-size: 3.5rem;
    }

    .hard-truth-post-text blockquote::after {
        right: 5px;
        bottom: -10px;
        font-size: 3.5rem;
    }

    /* .hard-truth-post-text p:first-of-type span:first-child {
        font-size: 2.8rem;
        margin-right: 0px;
        margin-top: 0px;
    } */

    .form-box {
        min-height: 50px;
        padding: 0 15px;
    }

    .form-box:has(textarea) {
        padding-top: 15px;
    }

    .form-box label {
        font-size: 17px;
    }

    .form-box .form-control,
    .form-box .form-select {
        min-height: unset;
        font-size: 16px;
    }

    .egm-carousel {
        padding: 0 30px;
    }

    .egm-carousel .slick-prev,
    .egm-carousel .slick-next {
        width: 30px;
    }

    .egm-carousel .slick-next::before,
    .egm-carousel .slick-prev::before {
        font-size: 25px;
    }

    .archive-container .archive-item p {
        font-size: 12px;
    }

    .egm-footer {
        padding-top: 50px;
        text-align: center;
    }

    .footer-links li a {
        justify-content: center;
    }

    .footer-social-icons {
        justify-content: center;
        margin-top: 20px;
    }

    .footer-bottom {
        margin-top: 40px;
    }

    .magazine-iframe {
        height: 400px;
    }

}

@media (max-width: 575px) {
    .logo img {
        width: 200px;
    }

    .home-menu-black .nav-button {
        top: 8px;
    }

    .home-heading {
        font-size: 1em;
        padding: 15px 30px;
        letter-spacing: 1px;
    }

    .current-issue-container {
        width: 100%;
    }

    .signup-container {
        margin: 70px 0 0 0;
    }

    .hard-truth-main-container {
        padding: 20px 10px 8px 10px;
    }

    .hard-truth-item h4 {
        font-size: 16px;
    }

    .hard-truth-item .hard-truth-profile {
        margin-top: 13px;
        margin-bottom: 5px;
    }

    .hard-truth-item .hard-truth-profile img {
        width: 33px;
        height: 33px;
    }

    .hard-truth-item .hard-truth-profile p {
        font-size: 11px;
    }

    .sub-page-container {
        padding-top: 80px;
        padding-bottom: 40px;
    }

    .sub-page-heading {
        padding: 9px 20px;
        font-size: 1.1em;
    }

    .sub-page-container .tagline {
        font-size: 1em;
    }

    .hard-truth-heading h2 {
        font-size: 27px;
    }

    .hard-truth-heading .hard-truth-profile img {
        width: 40px;
        height: 40px;
    }

    .hard-truth-heading .hard-truth-profile p {
        font-size: 13px;
    }

    .egm-carousel {
        padding: 0 25px;
    }

    .egm-carousel .slick-prev,
    .egm-carousel .slick-next {
        width: 25px;
    }

    .egm-carousel .slick-next::before,
    .egm-carousel .slick-prev::before {
        font-size: 20px;
    }

    .archive-container .archive-item p {
        font-size: 11px;
    }
}

/* In This Issue Section Base Styles */
.in-this-issue-heading {
    font-family: 'Palatino BoldItalic', serif;
    font-size: 1.8rem;
    font-style: italic;
    letter-spacing: 2px;
    text-decoration: underline;
    text-underline-offset: 6px;
    text-decoration-color: var(--primary-color);
    color: var(--headings-color);
    display: inline-block;
}

.magazine-blog-title {
    font-family: 'Palatino LT', serif;
    font-size: 2.05rem;
    /* font-style: italic; */
    font-weight: 700;
    color: var(--headings-color);
    line-height: initial;
    transition: color 0.3s ease;
}

.magazine-blog-title:hover {
    color: var(--primary-color);
}

.sub-page-container .magazine-blog-author {
    font-family: 'Palatino LT', serif;
    font-style: italic;
    font-weight: 500;
    font-size: .93rem;
    color: #363636;
    margin-top: 4px;
    letter-spacing: normal;
    line-height: 1 !important;
}

.image-container-accent {
    position: relative;
    display: block;
    margin-left: 25px;
    margin-right: 25px;
    margin-bottom: 25px;
}

.image-container-accent::before {
    content: '';
    position: absolute;
    left: -25px;
    right: -25px;
    bottom: -25px;
    height: 35%;
    background-color: var(--primary-color);
    z-index: 1;
}

.image-container-accent img {
    position: relative;
    z-index: 2;
    width: 100%;
    display: block;
}

/* Responsive Media Queries */
@media (max-width: 991px) {
    .magazine-blog-title {
        font-size: 1.9rem;
    }

    .in-this-issue-heading {
        font-size: 1.5rem;
    }

    .image-container-accent {
        margin-left: 20px;
        margin-right: 20px;
        margin-bottom: 20px;
    }

    .image-container-accent::before {
        left: -20px;
        right: -20px;
        bottom: -20px;
    }
}

@media (max-width: 767px) {
    .magazine-blog-title {
        font-size: 1.6rem;
        line-height: 1.15;
    }

    .sub-page-container .magazine-blog-author {
        font-size: .85rem;
        margin-top: 4px;
    }

    .in-this-issue-heading {
        font-size: 1.25rem;
        letter-spacing: 1px;
    }

    .image-container-accent {
        margin-left: 15px;
        margin-right: 15px;
        margin-bottom: 15px;
    }

    .image-container-accent::before {
        left: -15px;
        right: -15px;
        bottom: -15px;
        height: 35%;
    }
}

@media (max-width: 575px) {
    .magazine-blog-title {
        font-size: 1.6rem;
        line-height: 1.15;
    }

    .sub-page-container .magazine-blog-author {
        font-size: 0.9rem;
        margin-top: 3px;
    }

    .in-this-issue-heading {
        font-size: 1.1rem;
        letter-spacing: 1px;
    }

    .image-container-accent {
        margin-left: 12px;
        margin-right: 12px;
        margin-bottom: 12px;
    }

    .image-container-accent::before {
        left: -12px;
        right: -12px;
        bottom: -12px;
        height: 35%;
    }
}