/* Common Css */

:root {
    --red: #D44F49;
    --white: #FFFFFF;
    --black: #000000;
    --grey: #505050;
    --grey2: #5D5D5D;
    --grey3: #292929;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
    margin: 0;
}


a {
    text-decoration: none;
    color: var(--black);
}

body {
    font-family: 'Roboto';
    font-weight: normal;
    font-size: 14px;
    line-height: normal;
    color: var(--black);
    background: #F2F2F2;
}

.custom-container {
    width: 100%;
    max-width: 1920px;
    margin: 0 auto;
    padding: 0 40px;
}

.txt-red {
    color: var(--red);
}

.txt-gray3 {
    color: var(--grey3);
}

.font-16 {
    font-size: 16px;
}

.font-18 {
    font-size: 18px;
}

.font-20 {
    font-size: 20px;
}

.font-21 {
    font-size: 21px;
}

.font-32 {
    font-size: 32px;
}

.fw-400 {
    font-weight: 400;
}

.fw-500 {
    font-weight: 500;
}

.fw-600 {
    font-weight: 600;
}

.fw-700 {
    font-weight: 700;
}

.fw-900 {
    font-weight: 900;
}

.ltr-spc {
    letter-spacing: 1.8px;
}

.mw-300 {
    width: 100%;
    max-width: 300px;
}

.mw-330 {
    width: 100%;
    max-width: 330px;
}

.mw-425 {
    width: 100%;
    max-width: 425px;
}

.p-24 {
    padding: 24px;
}

.mb_40 {
    margin-bottom: 40px;
}

.mt_40 {
    margin-top: 40px;
}

.darkBtn {
    font-size: 16px;
    line-height: 1;
    font-weight: 600;
    padding: 5px 16px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: inset 0 0 0px 1px var(--black);
    background: var(--black);
    color: var(--white);
    transition: all 200ms linear;
    border: none;
    outline: none;
}

.darkBtn:hover {
    cursor: pointer;
    background: var(--white);
    color: var(--black);
}

.lightBtn {
    transition: all 200ms linear;
    font-size: 16px;
    line-height: 1;
    font-weight: 600;
    padding: 5px 16px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: inset 0 0 0px 1px var(--black);
}

.lightBtn:hover {
    background: var(--black);
    color: var(--white);
}

.btn-nostyle {
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    width: fit-content;
    margin: auto;
    font-weight: 500;
    font-size: 18px;
    transition: all 200ms linear;
}

.btn-nostyle:hover {
    color: var(--red);
    text-decoration: underline;
}

/* Common Css */


/* Header Css */

.header button.navbar-toggler {
    border: none;
}

.header button.navbar-toggler .navbar-toggler-icon {
    filter: invert(1);
    background-image: url(../images/toggle.svg);
    width: 25px;
    height: 25px;
}

.header button.navbar-toggler .navbar-toggler-icon:focus-visible {
    outline: none;
}

.navbar-toggler:focus {
    text-decoration: none;
    outline: 0;
    box-shadow: none;
}

.top-bar {
    background-color: var(--black);
    padding: 8px 0;
}

ul.top-nav-list {
    display: flex;
    gap: 15px;
    align-items: center;
    margin: 0;
    padding: 0;
}

ul.top-nav-list li {
    list-style: none;
}

ul.top-nav-list li a {
    color: var(--white);
    font-size: 12px;
    line-height: 1.5;
}


.main-header .custom-container {
    display: flex;
    flex-wrap: inherit;
    align-items: center;
    justify-content: space-between;
}

header ul.navbar-nav li a {
    padding: 0;
    font-size: 16px;
    font-weight: 600;
    color: var(--black);
}

header ul.navbar-nav li a:hover {
    color: var(--red);
}

.main-header nav.navbar {
    padding: 20px 0;
}

.header .social-icons {
    list-style: none;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: end;
    gap: 15px;
    margin: 0;
}

.header .social-icons img {
    width: 14px;
    height: 14px;
}

.header .navbar-nav {
    gap: 32px;
}

.header .navbar-nav .nav-link {
    padding: 0;
}

.header .rightWrapper {
    align-items: center;
    gap: 24px;
    margin-left: 24px;
}

.search img {
    vertical-align: middle;
}

/* Header Css */


/* post grid section starts */

.postgrid-col {
    flex-direction: column;
    display: flex;
}

.postgrid-main,
.postgrid-col {
    gap: 6px;
}

.postgrid-main {
    flex-wrap: wrap;
}

.postgrid-main>div {
    width: calc(33.33% - 4px);
}

.gridpost img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.gridpost .title-box {
    position: absolute;
    left: 50%;
    right: 50%;
    bottom: 24px;
    width: 100%;
    /* max-width: 425px; */
    transform: translateX(-50%);
    text-align: center;
    color: var(--white);
    background: #0000008a;
    padding: 10px;
}

/* post grid section end */


/* recent posts section starts */

.recent-posts-sec {
    padding: 40px 0;
    position: relative;
}

.lined-heading {
    font-size: 18px;
    line-height: 1;
    padding-top: 32px;
    padding-bottom: 18px;
    text-transform: uppercase;
    /* letter-spacing: ; */
    font-weight: 900;
    border-bottom: 1px solid #cacaca;
    position: relative;
    text-align: center;
}

.lined-heading::before {
    content: "";
    width: 60px;
    height: 2px;
    position: absolute;
    bottom: 0;
    left: 50%;
    right: 50%;
    background-color: var(--black);
    transform: translateX(-50%);
}

.recentPosts-wrapper {
    padding-top: 40px;
}

.recentPosts-wrapper .post-content {
    padding: 16px 16px 16px 0;
    display: flex;
    flex-direction: column;
    height: 100%;
    gap: 10px;
    justify-content: space-between;
}

.recentPosts {
    padding-left: 0;
}

.trendingPosts {
    padding-right: 0;
    padding-left: 28px;
    height: fit-content;
    position: sticky;
    top: 120px;
}

.recent-posts-sec .postcard {
    margin: 0;
}

.recent-posts-sec .postcard .post-img img {
    width: 100%;
}

.recent-posts-sec .postcard:not(:last-child) {
    margin-bottom: 24px;
}

.tagswrapper .tag {
    color: var(--grey);
    border: 1px solid #dcdcdc;
    border-radius: 4px;
    line-height: 1;
    padding: 3px 6px;
}

.trendingPosts-wrapper {
    padding: 50px 16px 16px;
}

.socialIcons-wrapper {
    margin-top: 24px;
}

.socialIcons-wrapper ul.social-icons {
    padding: 0;
    list-style: none;
    display: flex;
    align-items: center;
    gap: 21px;
    justify-content: center;
}

.trendingBottom {
    padding: 16px 20px 30px;
}

/* recent posts section end */


/* artists section starts */

.allcard-wrapper {
    padding: 40px 0;
    display: grid;
    gap: 40px 24px;
    grid-template-columns: repeat(auto-fit, minmax(23%, 1fr));
}

.allcard-img img {
    width: 100%;
    object-fit: cover;
}

.allcard-desc {
    margin-top: 12px;
}

.artist-desc {
    margin-top: 8px;
}

.artist-desc .fav-icon {
    background-color: #F5F5F5;
    border-radius: 100%;
    width: 40px;
    height: 40px;
    padding: 8px;
    display: flex;
    align-items: center;
}

.sub-title {
    color: var(--grey2);
}

.sec-top {
    display: flex;
    justify-content: space-between;
    align-items: start;
}

.search-bar {
    background: #EFEFEF;
    height: fit-content;
    display: flex;
    align-items: center;
    padding: 10px 16px;
    width: 100%;
    max-width: 310px;
}

.search-bar input,
.search-bar button {
    background: transparent;
    border: none;
    outline: none;
}

.search-bar input {
    width: 100%;
}

.search-bar input,
.search-bar input::placeholder {
    color: #050505;
    font-size: 14px;
}

/* artists section end */


/* Festival section starts */

.festival-desc {
    min-height: 160px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 8px;
}

.festival-desc .date {
    margin-bottom: 8px;
}

.festival-desc .location {
    margin-bottom: 12px;
}

/* Festival section end */


/* writer section starts */

.writer-desc h4 {
    margin: 8px 0;
}

.writer-info {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    /* height: 4rem;            */
}

/* writer section end */


/* concert section starts  */

.concert-wrapper {
    max-width: 1440px;
    margin: auto;
    padding: 40px 25px;
}

.concert-wrapper .sec-top {
    align-items: center;
    /* flex-wrap: wrap; */
    gap: 15px;
}

.concert-wrapper .title-wrapper p:not(:last-child) {
    margin-bottom: 8px;
}

.concert-wrapper .title-wrapper .btn-nostyle {
    font-size: 18px;
    font-weight: 500;
    margin-left: 0;
}

.concert-wrapper .searchBar {
    padding: 0 0 0 20px;
    gap: 10px;
    width: 100%;
    max-width: 850px;
}

.concert-wrapper .searchBar button {
    background: #000;
    padding: 13px 16px;
}

.concert-wrapper .searchBar button:hover {
    background: transparent;
}

.concert-wrapper .searchBar input,
.concert-wrapper .searchBar input::placeholder {
    font-family: 'Work Sans';
    width: 100%;
}

/* concert section end  */


/* footer starts */

.footer-sec {
    background: var(--black);
    color: var(--white);
}

.ftr-wrapper {
    padding: 46px 0 60px;
    border-bottom: 1px solid #DBCDFF;
}

.ftr-left {
    max-width: 360px;
}

.ftr-social-icons ul {
    padding: 0;
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 55px;
    padding-top: 35px;
}

.ftr-links-wrapper {
    padding: 0;
    min-width: 240px;
    list-style: none;
}

.ftr-links-wrapper .ftr-link {
    color: var(--white);
    font-size: 16px;
    font-weight: 600;
    display: inline-block;
    padding: 10px 16px;
}

.ftr-right {
    background: var(--white);
    padding: 24px;
    color: var(--black);
    width: 100%;
    max-width: 330px;
    margin-left: auto;
}

.ftr-right .newsletter-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 6px;
    text-transform: uppercase;
}

.ftr-right .newsletter-subtitle {
    color: #5D726D;
    margin-bottom: 16px;
}

.newsletter {
    padding-left: 0;
}

.newsletter-form input {
    width: 100%;
    margin-bottom: 16px;
    border: none;
    background: #EFEFEF;
    color: #797979;
    padding: 8px 16px;
}

.ftr-copyright {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 24px 0;
    gap: 16px;
    font-family: "Work Sans";
    text-transform: uppercase;
    font-size: 16px;
}

.ftr-copyright .copyright-link {
    color: var(--white);
    text-decoration: underline;
}

/* footer end */


/* hover effects and animations  */

.header .social-icons a {
    transition: all 500ms linear;
}

.postcard *,
.allcard-img * {
    transition: all 200ms linear;
}

.header .social-icons a:hover img {
    transform: scale(1.15);
}

.post-img,
.gridpost,
.allcard-img {
    overflow: hidden;
}

.postcard:hover {
    cursor: pointer;
}

.postcard:hover img,
.allcard-img:hover img {
    transform: scale(1.05);
}

.postcard:hover .post-content>h4 {
    color: var(--red);
}





.ft-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;

    padding: 46px 0 60px;
    border-bottom: 1px solid #DBCDFF;
}

.ftr-mid {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    flex: 1 1 0;
    max-width: 800px;
}

.mw-240 {
    max-width: 240px;
    width: 100%;
}

/* header sticky */

.main-header.sticky {
    position: fixed;
    top: 0;
    width: 100%;
    left: 0;
    z-index: 99;
    animation: fade-down 500ms 1 ease-in-out;
}

.recentPosts-wrapper .post-img img {
    height: 193px;
    object-fit: cover;
}

@keyframes fade-down {
    0% {
        top: -100px;
    }

    100% {
        top: 0;
    }

}

.grid_postImg img {
    height: 552px;
}

.post_image_small a img {
    height: 95px !important;
    object-fit: cover;
}

.allcard-img img {
    height: 225px;
    object-fit: cover;
}

.desc-top h4.fw-600.font-20.text-uppercase {
    min-height: 80px;
}

a:hover {
    color: var(--red);
}

.img-fluid {
    max-width: 100%;
    height: auto;
}

.allcard-img img {
    /* max-width: 100%;
    height: auto; */
    display: block;
}

.first-gridpost img {
    max-height: 447px;
}

.postgrid-col .gridpost img {
    max-height: 220px;
}

.new_class input[type="email"] {
    border: none;
    background: #EFEFEF;
    height: fit-content;
    display: flex;
    align-items: center;
    padding: 10px 16px;
    width: 100%;
    color: #050505;
    font-size: 14px;
}

.new_class .btn-primary {
    background: #000;
    padding: 8px 16px;
    border: none;
    border-radius: 0;
    font-size: 14px;
}

.post {
    border: 1px solid #ddd;
    padding: 15px;
    margin: 10px 0;
}

.featured-image,
.xyz-content {
    background: #f9f9f9;
    padding: 20px;
    text-align: center;
    font-size: 18px;
    margin: 15px 0;
}

.no-more-posts {
    text-align: center;
    color: #777;
    margin: 20px 0;
}

#loading {
    display: none;
    color: #555;
    font-size: 16px;
    margin: 20px auto;
}

.new_class form {
    display: flex;
}

.trendingPosts {
    top: 133px;
}

.btn-nostyle {
    font-size: 16px;
    line-height: 1;
    font-weight: 600;
    padding: 5px 16px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: inset 0 0 0px 1px #e37849;
}

.banner_img {
    width: 100%;
    position: relative;
}


.banner_img img {
    height: 50svh;
    width: 100%;
    object-fit: cover;
}

.main_bannerTitle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    padding: 10px;
    background: #00000069;
}

/* / Articles Details Page / */


.previous-art,
.next-art {
    max-width: 340px;
}

.preNext-clr {
    color: #6B7280;
}

.forwardNext {
    font-size: 16px;
    line-height: 1.5;
    transition: all .3s ease-in-out;
}

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

/* / Artist Page 06/02/2025 / */

.font-48 {
    font-size: 48px;
}

.gridpost .title-box-details {
    position: absolute;
    left: 50%;
    right: 50%;
    bottom: 100px;
    width: 100%;
    transform: translateX(-50%);
    text-align: center;
    color: var(--white);
}

.btn-soundtrack {
    background-color: #F5F5F5;
}

.upcoming-concert-check[type=checkbox]:checked {
    background-color: var(--black);
    border-color: var(--black);
}

.upcoming-concert-check:focus {
    border-color: var(--black);
    box-shadow: none;
}

.label-text-artist {
    color: var(--grey);
}


/* / Pagination / */

.pagination li a {
    color: var(--black);
    padding: 0px 8px;
    font-size: 20px;
    font-weight: 500;
}

.card_policy {
    min-height: 40svh;
    background-color: #ffffff;
}

.card_policy h1 {
    margin-bottom: 10px;
}

.card_policy p strong {
    display: block;
    margin: 10px 0;
}

.police_page {
    padding: 24px;
}

#writers-container .writer-card.allcard-card {
    background: #EFEFEF;
}

.allcard-desc .writer-info {
    font-size: 14px;
}

#writers-container .allcard-desc {
    margin: 0;
    padding: 16px;
}

.all_cardimage .tag {
    background: #000;
    color: #fff;
    font-size: 12px;
    padding: 5px 12px;
}

.tag_wraper {
    position: absolute;
    bottom: 16px;
    left: 16px;
}

.author_profile {
    padding: 24px;
}

.author_header {
    align-items: center;
    gap: 24px;
    margin-bottom: 24px;
}

.author_header_content {
    text-align: start;
}

.author-profile {
    max-width: 1199px;
    margin: auto;
    text-align: center;
    padding: 24px;
}

.author-avatar {
    border-radius: 50%;
    width: 150px;
    height: 150px;
    border: 4px solid #ccc;

}

.author-name {
    font-size: 24px;
    font-weight: bold;
}

.author-bio {
    font-size: 16px;
    color: #666;
    margin-bottom: 20px;
}

.author-posts {
    text-align: left;
    margin-top: 30px;
}

.author-post {
    border-bottom: 1px solid #ddd;
    padding-bottom: 15px;
    margin-bottom: 15px;
}

.pagination {
    margin-top: 20px;
    text-align: center;
}

.author-avatar {
    object-fit: cover;
}

.contact_form7 {
    padding: 24px;
}

.contact_form7 .contact-submit span.wpcf7-spinner {
    position: absolute;
}

.contact_form7 .contact-form-fieldset {

    border-radius: 0;
    background: #ffffff;
    max-width: 100%;
    margin: auto;
    border: none;
}

.contact_form7 .contact-form-legend {
    font-size: 18px;
    line-height: 1;
    padding-top: 0;
    padding-bottom: 18px;
    text-transform: uppercase;
    font-weight: 900;
    border-bottom: 1px solid #cacaca;
    position: relative;
    text-align: center;
    margin-bottom: 24px;

}

.contact_form7 .contact-form-legend::before {
    content: "";
    width: 60px;
    height: 2px;
    position: absolute;
    bottom: 0;
    left: 50%;
    right: 50%;
    background-color: var(--black);
    transform: translateX(-50%);
}

/* .pagination li:first-child a {
    border: 1px solid var(--red) !important;
    border-radius: 8px;
    height: 40px;
    width: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--white);
    color: var(--red);
} */

.contact_usBlock {
    align-items: center;
}

.contact_form7 .contact-submit-button {
    box-shadow: inset 0 0 0px 1px var(--black);
    background: var(--black);
    border-radius: 0;
}

.contact_form7 .contact-submit-button:hover {
    background: #fff;
    color: #000;

}

.contact-link_socialMedia span {
    text-align: center;
    display: block;
}

.contact-link_socialMedia {
    background: #fff;
    padding: 24px;
    flex: 1;
    text-align: center;
}

.svg_present_social svg {
    max-width: 250px;
}

.svg_present_social {
    margin-bottom: 24px;
    text-align: center;
}

.contact_social_items {
    padding: 16px;
}

.contact_social_items {
    padding: 16px 0;
}

.contact-link_socialMedia a {
    font-size: 14px;
    font-weight: 600;
}

.contact_form7 .contact-input,
.contact_form7 .contact-textarea {
    background: #EFEFEF;
    border: none;
    border-radius: 0;

}

.header .dropdown-menu .nav-link {
    padding: 8px 20px;
}

.dropdown-item.active,
.dropdown-item:active {
    background-color: #f2f2f2 !important;
}

.video_boxItems {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 16px;
}

.video_boxItems_outer .video-embed {
    margin-top: 24px;
    background-color: #ffffff;
    padding: 10px;
}

.video_subElements {
    background: #d44f49;
    padding: 16px;
    color: #fff;
    z-index: 1;
    position: relative;
}

.video_boxItems .related-videos {
    margin: 24px 0;
}

.video_post_elements .video-overlay {
    background: rgb(212 79 73);
    bottom: -44px;
    z-index: 3;
}

.video_post_elements .video-overlay a p {
    color: #ffffff;
}

.video_post_elements .video-overlay a:hover {
    color: #ffffff;
}

.video_boxItems .related-videos h4 {
    padding-bottom: 20px;
}

.video_boxItems .related-video-item {
    background: #ffffff;
    width: 31.85%;
    padding: 10px;
}

.nav-link:focus,
.nav-link:hover {
    color: #d44f49;
}

.video_boxItems .video-embed * {
    border-radius: 0 !important;
}

.dropdown-menu {
    border: 1px solid #000;
    border-radius: 0;
}

.video-item {
    position: relative;
    display: inline-block;
    margin: 10px;
    width: 300px;
}

.video-item iframe {
    width: 100%;
    height: 246px;
}

.video-overlay {
    position: absolute;
    bottom: 30px;
    background: rgba(0, 0, 0, 0.7);
    color: #fff;
    width: 100%;
    text-align: center;
    padding: 5px;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
    left: 0;
}

.video-item:hover .video-overlay {
    opacity: 1;
}

.video-tags {
    text-align: center;
    margin-top: 5px;
}

.video-tags .tag {
    display: inline-block;
    background: #0073aa;
    color: white;
    padding: 3px 8px;
    margin: 2px;
    border-radius: 4px;
    font-size: 12px;
}

#load-more-btn {
    display: none;
}

.href_link {
    color: white;
}

.video_post_elements {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    padding: 50px 0;
}

.video_post_elements .video-item {
    width: 100%;
    flex: 0 calc(25% - 10px);
    margin: 0;
    background-color: #ffffff;
    padding: 10px 10px 6px;

}

.video_post_elements .video-item iframe {
    background: #000;
}

.video_subElements .video-tags {
    text-align: start;
    margin-top: 5px;
}

.video_subElements .video-tags .tag {
    border-radius: 5px !important;
    border-radius: 0 !important;
    background: #000000 !important;
}

.video_post_elements .video-item:hover {
    background: #d44f49;
    transition: all .3s ease-in-out;
}

.gallery-item .gallery-link {
    color: #d44f49;
}

.venue_image img {
    width: 100%;
    border-radius: 8px;
}

.venue_containerInner {
    margin: 24px auto;
    width: 100%;
    display: flex;
    gap: 24px;
}

.venue_cardItems {
    background: #fff;
    padding: 16px;
    border-radius: 8px;
    width: 50%;
}

.venue_cardItems_title {
    background: #d44f49;
    color: #fff;
    padding: 14px;
    margin: -16px -16px 24px;
    border-radius: 8px 8px 0 0;
}

.venue_image {
    width: 50%;
}

.icon_block {
    display: block;
    text-align: center;
}

.venue-details {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.venue-details li {
    width: 47%;
    text-align: center;
    word-break: break-all;
    gap: 29px;
}

.icon_block {
    display: block;
    margin-bottom: 10px;
    text-align: center;
}

.venue-bio p {
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 20px;
}

.related-articles li {
    width: calc(25% - 15px);
}




/*headersearch  css 08-july-2025 */
/* Search Container */
.search-container {
    position: relative;
    display: inline-block;
    vertical-align: middle;
    margin-left: 15px;
}

/* Toggle Button */
.search-toggle {
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    transition: all 0.3s ease;
    z-index: 10;
    position: relative;
}

.search-toggle .search-icon {
    width: 22px;
    height: 22px;
    fill: #333;
    transition: all 0.3s ease;
}

/* Search Form (Initially Hidden) */
#global-search-form {
    position: absolute;
    top: 100%;
    right: 0;
    width: 0;
    height: 0;
    overflow: hidden;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 20;
    margin-top: 5px;
}

.search-wrapper {
    position: relative;
    width: 250px;
    background: #fff;
    border-radius: 4px;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.15);
    padding: 5px;
}

/* Search Input */
#global-search-input {
    width: 100%;
    padding: 8px 35px 8px 15px;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    font-size: 14px;
    background: #fff;
}

/* Search Submit Button */
.search-submit {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
}

.search-submit .search-icon {
    width: 18px;
    height: 18px;
    fill: #666;
}

/* Expanded State */
.search-container.active .search-toggle {
    /* opacity: 0; */
    /* visibility: hidden; */
}

.search-container.active #global-search-form {
    width: auto;
    height: auto;
    opacity: 1;
    transform: translateY(0);
    overflow: visible;
}

/* Focus/Hover States */
#global-search-input:focus {
    border-color: #0073aa;
    outline: none;
}

.search-submit:hover .search-icon {
    fill: #0073aa;
}

.search-toggle:hover .search-icon {
    fill: #0073aa;
}

.cstmlogo .custom-logo-link {
    display: none;
}

.header_menu_list {
    align-items: center;
}

.header_menu_list {
    margin-left: auto;
}

.menu_navBar {
    padding-right: 60px;
}

.desktop_img {
    display: flex;
    justify-content: center;
}

.recentPosts figure img {
	max-width: 100%;
	width: 100%;
	height: auto;
}

.articleinnercontent {
    max-width: 850px;
    margin: 0 auto;
    padding: 0 24px 24px;
    width: 100%;
}



.articleinnercontent img{
    width: 100%;
    height: auto;
}


.topic_tags .post-tags {
    max-width: 800px;
    margin: 0 auto;
    font-weight: 500;
}

.recent_card_box {
    background-color: #ffffff;
}

.articleinnercontent iframe {
    width: 100%;
    min-height: 430px;
    height: auto;
}

.articleinnercontent figure figcaption {
    background: #efefef;
    padding: 8px;
    font-weight: bold;
    text-align: center;
}

.articleinnercontent p {
    line-height: 1.9;
    letter-spacing: 0.01em;
    font-size: 16px;
    color: #333;
    margin-bottom: 10px;
}

.articleinnercontent em {
    color: #575757;
}

.post-tags {
    margin-top: 15px;
    font-size: 14px;
}

.post-tags strong {
    margin-right: 10px;
}

.post-tags ul {
    display: inline;
    /* allow inline list */
    padding: 0;
    margin: 0;
    list-style: none;
}

.post-tags ul li {
    display: inline-block;
    margin-right: 10px;
}

.post-tags ul li a {
    background-color: #f1f1f1;
    padding: 4px 8px;
    border-radius: 4px;
    text-decoration: none;
    color: #333;
    transition: background-color 0.3s;
}

.topic_tags {
	background: #cacaca;
	padding: 23px 0 13px;
}

.post-tags ul li a:hover {
    background-color: var(--red);
    color: #fff;
}
.topic_tags .post-tags ul li{
    margin-bottom: 10px;
}
.topic_tags .post-tags ul li a {
	display: block;
	font-weight: 400;
}

.mobile_search{
    display: none;
}
.desktop_img .custom-logo{
    object-fit: contain;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .search-wrapper {
        width: 200px;
    }

    .search-container {
        margin-left: 10px;
    }
}

@media (max-width: 480px) {
    .search-wrapper {
        width: 180px;
    }

    
}

.page-template-page-allPostLoadmore .gridpost .title a {
    color: #fff;
}