/* Style dla LocalPress CMS */

/*============= Font Face Declarations ========== */
@font-face {
    font-family: 'Poppins';
    src: url('../fonts/Poppins-Thin.ttf') format('truetype');
    font-weight: 100;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Poppins';
    src: url('../fonts/Poppins-Light.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Poppins';
    src: url('../fonts/Poppins-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Poppins';
    src: url('../fonts/Poppins-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Poppins';
    src: url('../fonts/Poppins-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

/*============= Global Font Settings ========== */
html,
body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

:root {
    --color-1: #c8102e;
    --color-2: #770520;
    --color-3: #0c0c0c;
    --color-4: #dee0e3;
    --color-5: #F2F2F2;
    --color-6: #ffffff;
}


/*============= header area style start hare ========== */

.link-color{
    color: var(--color-3);
}

.link-color:hover{
    color: var(--color-1);
}

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

.fs-13 {
    font-size: 13px;
}

.fs-17 {
    font-size: 17px;
}



/* Header Block */
.header {
    position: relative;
}

.header__top {
    padding: 18px 0;
    background: #fff;
    border-bottom: 1px solid #e6e6e6;
}

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

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

.header__logo-link {
    display: inline-block;
    font-size: 28px;
    font-weight: 700;
    color: #292929;
    text-decoration: none;
}

.header__logo-link img {
    width: 160px;
}

.header__toggle {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    padding: 0;
    border: none;
    background: transparent;
    cursor: pointer;
}

.header__toggle-line {
    width: 30px;
    height: 3px;
    display: block;
    background: #000;
    transition: 0.2s all ease;
    -webkit-transition: 0.2s all ease;
    -moz-transition: 0.2s all ease;
}

.header__toggle-line:nth-of-type(2) {
    margin: 7px 0;
}

.header__bottom {
    box-shadow: rgba(0, 0, 0, 0.22) 0px 2px 4px;
    background: #fff;
}

.header__nav {
    display: flex;
    align-items: center;
    padding: 15px 0;
}

.header__nav-logo {
    opacity: 0;
    width: 0;
    transition: 0.2s all ease;
    -webkit-transition: 0.2s all ease;
    -moz-transition: 0.2s all ease;
}

.header__nav-logo img {
    width: 100px;
}

.header__menu {
    display: flex;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
}

.header__menu-item {
    position: relative;
    list-style: none;
}

.header__menu-link {
    color: var(--color-3);
    font-size: 16px;
    font-weight: 500;
    margin-right: 40px;
    text-decoration: none;
    transition: 0.2s all ease;
    -webkit-transition: 0.2s all ease;
    -moz-transition: 0.2s all ease;
}

.header__menu-link:hover {
    color: var(--color-1);
}

.header__menu-icon {
    width: 13px;
    height: 13px;
    margin-left: 8px;
    display: inline-block;
    vertical-align: middle;
    transition: 0.2s all ease;
    -webkit-transition: 0.2s all ease;
    -moz-transition: 0.2s all ease;
}

.header__menu-link:hover .header__menu-icon {
    transform: rotate(180deg);
}

.header__submenu {
    position: absolute;
    left: 0;
    top: 100%;
    box-sizing: border-box;
    opacity: 0;
    visibility: hidden;
    width: 260px;
    background-color: #fff;
    padding: 9px 0px 12px;
    border-top: 2px solid var(--color-4);
    border-bottom-left-radius: 6px;
    border-bottom-right-radius: 6px;
    box-shadow: rgba(0, 0, 0, 0.12) 0px 2px 16px;
    z-index: 1;
    transform: translateY(30px);
    transition: 0.2s all ease;
    -webkit-transition: 0.2s all ease;
    -moz-transition: 0.2s all ease;
    list-style: none;
    margin: 0;
    padding: 0;
}

.header__submenu-item {
    list-style: none;
}

.header__submenu-link {
    color: var(--color-3);
    padding: 0px 20px;
    margin: 8px 0;
    font-size: 14px;
    display: inline-block;
    text-decoration: none;
}

.header__submenu-link:hover {
    color: var(--color-1);
    text-decoration: none;
}

.header__menu-item:hover > .header__submenu {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
}

/* Header Modifier - Fixed */
.header__bottom--fixed {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    transition: 0.2s all ease;
    -webkit-transition: 0.2s all ease;
    -moz-transition: 0.2s all ease;
}

.header__bottom--fixed .header__nav-logo {
    width: 100px;
    opacity: 1;
    margin-right: 26px;
    transition: 0.2s all ease;
    -webkit-transition: 0.2s all ease;
    -moz-transition: 0.2s all ease;
}

.header__bottom--fixed .header__nav-logo a {
    font-size: 17px !important;
    font-weight: 700;
    color: var(--color-3);
} 

/*=== Offcanvas Side Menu Block ===*/

.offcanvas-start {
    width: 300px;
    border: none;
    background: #fff;
}

.offcanvas-body {
    padding: 30px 20px;
}

.side-menu {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.side-menu__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.side-menu__logo {
    display: inline-block;
}

.side-menu__logo img {
    width: 100px;
}

.side-menu__close {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 25px;
    height: 25px;
    padding: 0;
    border: none;
    background: transparent;
    cursor: pointer;
}

.side-menu__close-line {
    width: 25px;
    height: 3px;
    display: block;
    background: var(--color-3);
    transition: 0.2s all ease;
    -webkit-transition: 0.2s all ease;
    -moz-transition: 0.2s all ease;
    position: absolute;
}

.side-menu__close-line:nth-of-type(1) {
    transform: rotate(45deg);
}

.side-menu__close-line:nth-of-type(2) {
    transform: rotate(-45deg);
}

.side-menu__body {
    flex: 1;
}

.side-menu__list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.side-menu__item {
    list-style: none;
    border-bottom: 1px solid var(--color-4);
    padding:13px 0;
}

.side-menu__link {
    color: var(--color-3);
    font-size: 15px;
    font-weight: 400;
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-decoration: none;
    transition: 0.2s all ease;
    -webkit-transition: 0.2s all ease;
    -moz-transition: 0.2s all ease;
}

.side-menu__link:hover {
    color: var(--color-1);
}

.side-menu__link-icon {
    width: 15px;
    height: 15px;
    display: inline-block;
    vertical-align: middle;
    transition: 0.2s all ease;
    -webkit-transition: 0.2s all ease;
    -moz-transition: 0.2s all ease;
}

.side-menu__link.active .side-menu__link-icon {
    transform: rotate(180deg);
}

.side-menu__submenu {
    padding-left: 15px;
    display: none;
    list-style: none;
    margin: 0;
    padding-left: 15px;
}

.side-menu__submenu-item {
    list-style: none;
    border-bottom: 1px solid var(--color-4);
    padding:13px 0;
}

.side-menu__submenu-link {
    color: var(--color-3);
    font-size: 15px;
    font-weight: 400;
    display: block;
    text-decoration: none;
}

.side-menu__submenu-link:hover {
    color: var(--color-1);
}


/*============= Section Header - Universal Component ========== */
.section-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 1rem;
    padding: 10px 0;
}

.section-header__indicator {
    display: inline-block;
    width: 10px;
    height: 10px;
    background: var(--color-2);
    border-radius: 50%;
    flex-shrink: 0;
}

.section-header__title, 
.section-header__title a {
    color: var(--color-3);
    font-size: 18px;
    font-weight: bold;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin: 0;
}

.section-header__title a:hover {
    color: var(--color-1);
}

.line-gray{
    border-bottom: 1px solid var(--color-5);
}


/* Section Header Modifiers */
.section-header--yellow .section-header__indicator {
    background: var(--color-2);
}


/*============= News List - Universal Component ========== */
.news-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.news-list__item {
    display: flex;
    border-bottom: 1px solid #dee2e6;
    padding-bottom: 0.75rem;
}

.news-list__item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.news-list__link {
    display: flex;
    text-decoration: none;
    color: inherit;
    width: 100%;
}

.news-list__thumbnail {
    flex-shrink: 0;
    width: 95px;
    height: 59px;
    position: relative;
    overflow: hidden;
    border-radius: 0.375rem;
}

.news-list__thumbnail img {
    /* width: 100%;
    height: 100%; */
    object-fit: cover;
    display: block;
}

.news-list__content {
    flex-grow: 1;
    margin-left: 0.5rem;
}

.news-list__title {
    font-weight: 600;
    font-size: 0.875rem;
    line-height: 1.3;
    margin: 0;
}


/*============= Section Layout - Universal ========== */
.news-sections {
    padding: 50px 0;
    background: var(--color-5);
}

.news-section {
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
}

/*============= O tym się mówi - Specific Layout ========== */
.talking-about {
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
}

.talking-about__main {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.talking-about__sidebar {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}



/*============= Event List - Universal Component ========== */
.event-list {
    padding-top: 20px;
}

.event-item {
    transition: 0.2s;
}

.event-item:hover {
    background-color: #f8f8f8;
}

.event-item__thumbnail {
    width: 54px;
    height: 54px;
    overflow: hidden;
    border-radius: 50%;
    flex-shrink: 0;
}

.event-item__thumbnail img {
    width: 54px;
    height: 54px;
    object-fit: cover;
}

.event-item__content {
    flex-grow: 1;
}

.event-item__meta {
    font-size: 11px;
    letter-spacing: 1px;
}

.event-item__title {
    font-size: 1.15rem;
}

.event-item__title a {
    transition: 0.2s;
}



.event-item__details {
    margin-top: 8px;
}

.event-item__venue {
    display: inline-flex;
    align-items: center;
}

.event-item__venue i {
    margin-right: 4px;
}

.event-item__button {
    background-color: var(--color-1);
    border: 0;
    color: #fff !important;
    display: inline-block;
    font-weight: 600;
    font-size: 14px;
    padding: 6px 16px;
    text-decoration: none !important;
    text-transform: uppercase;
    transition: 0.3s;
    border-radius: 2px;
    white-space: nowrap;
}

.event-item__button:hover {
    background: var(--color-2);
    color: #fff !important;
    text-decoration: none !important;
}

.event-item:hover .event-item__title a {
    color: var(--color-1);
    text-decoration: underline;
}

/*============= Category Dropdown - Universal Component ========== */
.category-dropdown {
    position: relative;
    display: none; /* Ukryte na mobile */
}

.category-dropdown__toggle {
    background: transparent;
    border: 1px solid #0c0c0c;
    color: #0c0c0c;
    font-size: 16px;
    font-weight: 600;
    padding: 8px 30px 8px 16px;
    cursor: pointer;
    position: relative;
    transition: 0.3s;
    display: flex;
    align-items: center;
}

.category-dropdown__toggle:hover {
    background: #0c0c0c;
    color: #fff;
}

.category-dropdown__toggle::after {
    content: "";
    display: inline-block;
    position: absolute;
    top: 50%;
    right: 12px;
    width: 10px;
    height: 6px;
    background: currentColor;
    transform: translateY(-50%);
    clip-path: polygon(100% 0, 0 0, 50% 100%);
    transition: transform 0.3s, clip-path 0.3s;
}

.category-dropdown__toggle[aria-expanded="true"]::after {
    clip-path: polygon(50% 0, 0 100%, 100% 100%);
}

.category-dropdown__toggle span {
    font-weight: 600;
}

.category-dropdown__list {
    position: absolute;
    top: 100%;
    right: 0;
    background: #fff;
    border: 1px solid #0c0c0c;
    min-width: 200px;
    display: flex;
    flex-direction: column;
    z-index: 10;
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.3s, visibility 0.3s;
    margin-top: 4px;
    max-height: 400px;
    overflow-y: auto;
}

.category-dropdown.active .category-dropdown__list {
    opacity: 1;
    visibility: visible;
}

.category-dropdown__list li {
    border-bottom: 1px solid #e2e2e2;
}

.category-dropdown__list li:last-child {
    border-bottom: none;
}

.category-dropdown__list li a {
    display: block;
    padding: 14px 20px;
    font-size: 16px;
    font-weight: 400;
    color: #0c0c0c;
    white-space: nowrap;
    transition: 0.2s;
}

.category-dropdown__list li a:hover {
    background: var(--color-5);
    text-decoration: underline;
    color: var(--color-1);
}

/* Pokazuj dropdown tylko na większych ekranach */
@media (min-width: 992px) {
    .category-dropdown {
        display: block;
    }
}


/*============= Content Section - Layout ========== */
.content-section {
    margin-top: 2rem;
    margin-bottom: 2rem;
}

/* Guide list uses Bootstrap grid, no additional styles needed */


/*============= Obituary Section - Universal Component ========== */
.obituary-section {
    padding-block: 32px;
}

.obituary-card {
    background: #f2f2f2;
    border: 1px solid #d3d3d3;
    padding: 20px 24px;
    position: relative;
    min-height: 200px;
    transition: 0.3s;
}

.obituary-card:hover {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.obituary-card__content {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;
    position: relative;
    height: 100%;
}

.obituary-card__text {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 8px;
}

.obituary-card__name {
    font-size: 20px;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 4px;
    color: #000;
}

.obituary-card__death {
    font-size: 16px;
    font-weight: 400;
    color: #000;
}

.obituary-card__age {
    font-size: 16px;
    font-weight: 400;
    color: #000;
}

.obituary-card__funeral-place {
    font-size: 16px;
    font-weight: 400;
    color: #000;
    margin-top: 8px;
}

.obituary-card__funeral-date {
    font-size: 16px;
    font-weight: 400;
    color: #000;
}

.obituary-card__links {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 12px;
    flex-wrap: wrap;
}

.obituary-card__snitch-count {
    font-size: 16px;
    font-weight: 400;
    color: #d2691e;
}


.obituary-card__disclaimer {
    font-size: 14px;
    font-style: italic;
    color: #666;
    margin-top: 12px;
    padding-top: 8px;
    border-top: 1px solid #d3d3d3;
}

.obituary-card__cross {
    flex-shrink: 0;
    color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 50px;
    position: relative;
}

.obituary-card__cross svg {
    width: 100%;
    height: 100%;
}

/* Responsive dla nekrologów */
@media (max-width: 991px) {
    .obituary-card__content {
        flex-direction: column;
    }
    
    .obituary-card__cross {
        align-self: flex-end;
        margin-top: 12px;
    }
}

@media (max-width: 575px) {
    .obituary-card {
        padding: 16px 20px;
    }
    
    .obituary-card__name {
        font-size: 18px;
    }
    
    .obituary-card__death,
    .obituary-card__age,
    .obituary-card__funeral-place,
    .obituary-card__funeral-date {
        font-size: 15px;
    }
    
    .obituary-card__links {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
}

.placeholder {
    background-color: var(--color-4);
    display: flex;
    align-items: center;
    justify-content: center;
    border:1px solid var(--color-5);
}

.placeholder i {
    font-size: 2rem;
    color: var(--color-3);
    opacity: 0.6;
}

.placeholder:hover {
    background-color: var(--color-4);
    cursor: pointer;
}

.news-card__title{
    color: var(--color-3);
    font-weight: 600;
    font-size: 17px;
    line-height: 1.4;
    margin:7px 0;
}

.news-card:hover .news-card__title {
    color: var(--color-1);
}

/* Popular Posts Slider */
/*============= slider posts area style start hare ================ */
.slider-posts-area {
    background-color: #f8f9fa;
}

.slider-posts-area .section-title {
    font-weight: bold;
    font-size: 1.5rem;
}

.slider-navigation {
    display: flex;
    gap: 0.5rem;
}

.slider-nav-btn {
    width: 40px;
    height: 40px;
    border: 1px solid #ddd;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-nav-btn:hover {
    background: #f0f0f0;
    border-color: #999;
}

.slider-nav-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.slider-nav-btn svg {
    width: 20px;
    height: 20px;
}

.slider-posts-container {
    overflow: hidden;
    position: relative;
}

.popular-posts-slider {
    display: flex;
    gap: 1rem;
    transition: transform 0.3s ease;
}

.popular-post-slide {
    flex: 0 0 calc(20% - 0.8rem);
    min-width: calc(20% - 0.8rem);
}

@media (max-width: 1200px) {
    .popular-post-slide {
        flex: 0 0 calc(25% - 0.75rem);
        min-width: calc(25% - 0.75rem);
    }
}

@media (max-width: 992px) {
    .popular-post-slide {
        flex: 0 0 calc(33.333% - 0.667rem);
        min-width: calc(33.333% - 0.667rem);
    }
}

@media (max-width: 768px) {
    .popular-post-slide {
        flex: 0 0 calc(50% - 0.5rem);
        min-width: calc(50% - 0.5rem);
    }
}

@media (max-width: 576px) {
    .popular-post-slide {
        flex: 0 0 100%;
        min-width: 100%;
    }
}

.popular-post-item {
    display: flex;
    align-items: flex-start;
    text-decoration: none;
    color: inherit;
    padding: 1rem;
    background: white;
    border-radius: 8px;
    transition: all 0.3s ease;
    height: 100%;
}

.popular-post-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    color: inherit;
}

.popular-post-item:hover .popular-post-number {
    color: #c8102e;
}

.popular-post-number {
    font-size: 2rem;
    font-weight: bold;
    color: #e0e0e0;
    margin-right: 1rem;
    line-height: 1;
    min-width: 40px;
}

.popular-post-content h5 {
    font-size: 0.95rem;
    line-height: 1.4;
    margin: 0;
    font-weight: 600;
}
/*============= slider posts area style end hare ================ */

/*============= Weather Widget Section - Universal Component ========== */
.weather-widget-bar {
    background: #fff;
    border: 1px solid var(--color-4);
    border-radius: 0.375rem;
    display: flex;
    align-items: stretch;
    overflow: hidden;
}

.weather-widget-bar__item {
    flex: 1;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    position: relative;
}

.weather-widget-bar__item:not(:last-child) {
    border-right: 1px solid var(--color-4);
}

.weather-widget-bar__info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.weather-widget-bar__date {
    font-size: 14px;
    font-weight: 600;
    color: var(--color-3);
}

.weather-widget-bar__nameday {
    font-size: 13px;
    color: var(--color-3);
}

.weather-widget-bar__countdown {
    font-size: 13px;
    color: var(--color-3);
}

.weather-widget-bar__weather {
    width: 100%;
}

.weather-widget-bar__weather-left {
    flex-grow: 1;
}

.weather-widget-bar__weather-right {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.weather-widget-bar__city {
    font-size: 13px;
    font-weight: 600;
    color: var(--color-3);
}

.weather-widget-bar__city i {
    color: var(--color-1);
    font-size: 12px;
}

.weather-widget-bar__temp {
    font-size: 24px;
    color: var(--color-3);
    line-height: 1.2;
}

.weather-widget-bar__weather-split {
    display: flex;
    align-items: center;
    gap: 16px;
    width: 100%;
}

.weather-widget-bar__weather-item {
    flex: 1;
}


.weather-widget-bar__weather-divider {
    width: 1px;
    height: 40px;
    background-color: var(--color-4);
    flex-shrink: 0;
}

.weather-widget-bar__weather-details {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.weather-widget-bar__detail-item {
    font-size: 13px;
    color: var(--color-3);
}

.weather-widget-bar__detail-item i {
    font-size: 14px;
    color: var(--color-1);
    flex-shrink: 0;
}

.weather-widget-bar__detail-item span {
    color: var(--color-3);
}

.weather-widget-bar__air {
    width: 100%;
}

.weather-widget-bar__air-left {
    flex-grow: 1;
}

.weather-widget-bar__air-right {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.weather-widget-bar__air-label {
    font-size: 13px;
    font-weight: 600;
    color: var(--color-3);
}

.weather-widget-bar__airly-logo {
    font-size: 11px;
    color: #0066cc;
    font-weight: 600;
}

.weather-widget-bar__air-quality {
    font-size: 16px;
    color: var(--color-3);
}


.weather-widget-bar__weather-right i {
    color: var(--color-3);
    font-size: 32px;
}

@media (max-width: 991px) {
    .weather-widget-bar {
        flex-direction: column;
    }
    
    .weather-widget-bar__item:not(:last-child) {
        border-right: none;
        border-bottom: 1px solid var(--color-4);
    }
    
    .weather-widget-bar__item {
        padding: 12px 16px;
    }
}

/*============= Company Categories Section ========== */
.company-categories-section {
    background-color: var(--color-5);
}




.section-header--brown.border-bottom {
    border-bottom-color: rgba(255, 255, 255, 0.3) !important;
}




@media (max-width: 1200px) {
    .company-category-slide {
        flex: 0 0 calc(33.333% - 0.667rem);
        min-width: calc(33.333% - 0.667rem);
    }
}

@media (max-width: 992px) {
    .company-category-slide {
        flex: 0 0 calc(50% - 0.5rem);
        min-width: calc(50% - 0.5rem);
    }
}

@media (max-width: 768px) {
    .company-category-slide {
        flex: 0 0 calc(50% - 0.5rem);
        min-width: calc(50% - 0.5rem);
    }
}

@media (max-width: 576px) {
    .company-category-slide {
        flex: 0 0 100%;
        min-width: 100%;
    }
}

/* Company Categories Grid (Home Page) */
.company-category-item {
    padding: 4px 0;
}

.company-category-link {
    color: #fff;
    font-size: 14px;
    line-height: 1.4;
    transition: all 0.2s ease;
}

.company-category-link:hover {
    color: #fff;
    opacity: 0.8;
}

.company-category-icon {
    display: inline-block;
    width: 28px;
    height: 28px;
    flex-shrink: 0;
    vertical-align: middle;
}

.company-category-icon svg {
    width: 100%;
    height: 100%;
    display: block;
    fill: #fff;
}

.company-category-link:hover .company-category-icon svg {
    fill: #fff;
    opacity: 0.8;
}

.company-category-title {
    color: #fff;
}

.category-page__featured{
    padding-top: 20px;
    border-bottom: 1px solid var(--color-5);
}

.company-badge--promoted{
    background-color: var(--color-5);
    color: var(--color-1);
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.guide-row-item:hover .guide-title a {
    color: var(--color-1);

}

.company-row-item:hover .company-title a {
    border-bottom: 1px solid var(--color-4);
    padding:13px 0;
}

/*============= Companies Promo Cards - BEM Component ========== */
.companies-promo {
    margin-bottom: 2rem;
}

.companies-promo__row {
    margin-bottom: 1.5rem;
}

.companies-promo__col {
    margin-bottom: 1rem;
}

@media (min-width: 768px) {
    .companies-promo__col {
        margin-bottom: 0;
    }
}

.companies-promo__card {
    padding: 1.5rem;
    height: 100%;
    background-color: #f8f9fa;
    border: 1px solid #dee2e6;
    border-radius: 0.375rem;
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.companies-promo__content {
    flex: 1;
}

.companies-promo__title {
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--color-3);
}

.companies-promo__description {
    color: #6c757d;
    margin-bottom: 1rem;
    font-size: 0.97rem;
    line-height: 1.5;
}


/*============= Companies Categories - BEM Component ========== */
.companies-categories {
    margin-bottom: 2rem;
}

.companies-categories__item {
    margin-bottom: 3rem;
}

.companies-categories__header {
    margin-bottom: 1rem;
}

.companies-categories__title {
    margin-bottom: 0;
}

.companies-categories__link {
    text-decoration: none;
    color: inherit;
}

.companies-categories__link:hover {
    text-decoration: none;
}

.companies-categories__count {
    color: #6c757d;
}

.companies-categories__children {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.companies-categories__child {
    display: inline-block;
    text-decoration: none;
}

.companies-categories__child-title {
    font-size: 12px;
}

.companies-categories__child-btn {
    border: 1px solid var(--color-4);
    color: var(--color-3);
    font-weight: 400;
    letter-spacing: 0.5px;
    padding: 8px 16px;
    border-radius: 0;
    font-size: 12px;
    background-color: transparent;
    display: inline-block;
    text-align: center;
    vertical-align: middle;
    cursor: pointer;
    transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out;
}

.companies-categories__child-btn:hover {
    background-color: var(--color-5);
    color: var(--color-1);
    border-color: var(--color-1);
    text-decoration: none;
    font-weight: 600;
}



/* ========================================
   Banner System Styles
   ======================================== */
.banner {
    margin-bottom: 1rem;
    text-align: center;
    position: relative;
}

.banner-label {
    font-size: 0.75rem;
    color: #6c757d;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.banner-link {
    display: block;
    text-decoration: none;
    transition: opacity 0.3s ease;
    width: 100%;
    border: none;
    background: none;
    padding: 0;
    cursor: pointer;
}

.banner-link:hover {
    opacity: 0.9;
}

.banner-link:focus {
    outline: none;
}

/* Wrapper dla klikalnych banerów */
.banner-image-wrapper,
.banner-text-wrapper {
    width: 100%;
    display: block;
    cursor: pointer;
    margin: 0 auto;
}

.banner-text-wrapper {
    text-align: left;
    border: none;
    background: transparent;
    padding: 0;
}

.banner-image {
    margin: 0 auto;
    height: auto;
    border-radius: 0.25rem;
    display: block;
}

.banners-container {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.banners-sidebar .banner {
    margin-bottom: 1.5rem;
}

/* Banner Slider Styles */
.banners-slider-wrapper {
    position: relative;
    overflow: hidden;
    width: 100%;
}

.banners-slider {
    display: flex;
    gap: 0;
    transition: transform 0.5s ease-in-out;
    will-change: transform;
    width: 100%;
}

.banner-slide {
    flex: 0 0 100%;
    width: 100%;
    min-width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    position: relative;
}

.banner-slide .banner {
    margin-bottom: 0;
    width: 100%;
    display: block;
    text-align: center;
}

/* Banery HTML/JavaScript - pełna szerokość kontenera */
.banner[data-banner-id] {
    overflow: hidden;
}

/* Banner Text Type Styles */
.banner-text-content {
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 0.25rem;
}

.banner-text-header {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #212529;
}

.banner-text-body {
    font-size: 0.9rem;
    color: #6c757d;
    margin-bottom: 0.75rem;
    line-height: 1.5;
}

/* Banner text wrapper - cały kontener jest klikalny */
.banner-text-wrapper {
    text-align: left;
    border: none;
    background: transparent;
    padding: 0;
    cursor: pointer;
}

/* Banner Footer Content (header_banner i text_banner pod banerem) */
.banner-footer-content {
    margin-top: 0.75rem;
    padding-top: 0.75rem;
    border-top: 1px solid #dee2e6;
}

.banner-footer-header {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #212529;
}

.banner-footer-text {
    font-size: 0.875rem;
    color: #6c757d;
    margin-bottom: 0;
    line-height: 1.5;
}

/* Responsywność banerów */
@media (max-width: 768px) {
    .banner {
        margin-bottom: 0.75rem;
    }
    
    .banners-sidebar .banner {
        margin-bottom: 1rem;
    }
}

/*============= Pagination Styles ========== */
.pagination-custom-wrapper {
    border-bottom: 1px solid var(--color-4);
    padding-bottom: 1rem;
    margin-top: 2rem;
}

.pagination-custom {
    gap: 1.5rem;
    align-items: center;
    margin-bottom: 0;
    padding: 0;
    list-style: none;
    border: none;
}

.pagination-custom .page-item {
    margin: 0;
}

.pagination-custom .page-link {
    padding: 0;
    background: transparent !important;
    border: none !important;
    color: var(--color-3);
    font-size: 18px;
    font-weight: 400;
    text-decoration: none;
    transition: color 0.2s ease;
    display: inline-flex;
    align-items: center;
    line-height: 1.5;
}

.pagination-custom .page-link:hover {
    color: var(--color-1);
    background: transparent !important;
    text-decoration: none;
}

.pagination-custom .page-item.active .page-link {
    color: var(--color-1);
    background: transparent !important;
    border: none !important;
    font-weight: 600;
}

.pagination-custom .page-item.disabled .page-link {
    color: var(--color-3);
    background: transparent !important;
    border: none !important;
    opacity: 1;
    cursor: default;
}

.pagination-custom .page-link-prev {
    font-weight: 700;
    gap: 0.5rem;
}

.pagination-custom .page-link-prev-text {
    display: inline-block;
}

.pagination-custom .page-link-prev-arrow {
    display: inline-block;
    font-size: 16px;
    margin-right: 0.25rem;
}

.pagination-custom .page-link-next {
    font-weight: 700;
    gap: 0.5rem;
}

.pagination-custom .page-link-next-text {
    display: inline-block;
}

.pagination-custom .page-link-next-arrow {
    display: inline-block;
    font-size: 16px;
    margin-left: 0.25rem;
}

@media (max-width: 576px) {
    .pagination-custom {
        gap: 1rem;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .pagination-custom .page-link {
        font-size: 14px;
    }
}

/*============= Breadcrumb Styles ========== */
.breadcrumb-custom {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0;
    padding: 0;
    list-style: none;
    background: transparent;
    border-radius: 0;
}

.breadcrumb-custom .breadcrumb-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Usuń domyślne separatory Bootstrapa */
.breadcrumb-custom .breadcrumb-item::before,
.breadcrumb-custom .breadcrumb-item + .breadcrumb-item::before {
    display: none !important;
    content: none !important;
    padding: 0 !important;
    float: none !important;
}

.breadcrumb-custom .breadcrumb-item:not(:last-child)::after {
    display: none;
}

.breadcrumb-custom .breadcrumb-link {
    color: var(--color-1);
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    transition: color 0.2s ease;
    white-space: nowrap;
}

.breadcrumb-custom .breadcrumb-link:hover {
    color: var(--color-1);
    text-decoration: underline;
}

.breadcrumb-custom .breadcrumb-separator {
    color: #6c757d;
    font-size: 14px;
    margin: 0;
    padding: 0;
}

.breadcrumb-custom .breadcrumb-item--active {
    color: #6c757d;
    font-weight: 400;
    font-size: 14px;
    text-transform: uppercase;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
}

@media (max-width: 768px) {
    .breadcrumb-custom {
        gap: 0.375rem;
    }
    
    .breadcrumb-custom .breadcrumb-link,
    .breadcrumb-custom .breadcrumb-item--active,
    .breadcrumb-custom .breadcrumb-separator {
        font-size: 12px;
    }
    
    .breadcrumb-custom .breadcrumb-item--active {
        max-width: calc(100vw - 2rem);
    }
}

@media (max-width: 576px) {
    .breadcrumb-custom {
        gap: 0.25rem;
    }
    
    .breadcrumb-custom .breadcrumb-link,
    .breadcrumb-custom .breadcrumb-item--active,
    .breadcrumb-custom .breadcrumb-separator {
        font-size: 11px;
    }
}

/*============= Category Page Styles ========== */

.category-page__description{
    border-bottom: 1px solid var(--color-4);
}

.category-page__description-content{
    font-size: 14px;
    font-weight: 400;
    color: var(--color-3);
    line-height: 1.5;
    text-align: justify;
}

.category-page__description-content h2{
    font-size: 24px;
}

.category-page__description-content h3{
    font-size: 20px;
}

.category-page__description-content a{
    color: var(--color-3);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s ease;
    white-space: nowrap;
}

.category-page__description-content a:hover{
    color: var(--color-1);
    text-decoration: underline;
}

.category-page__article-link:hover .category-page__article-title{
    color: var(--color-1);
}


/* Exchange Rates Card */
.exchange-rates-card {
    background-color: #fff;
    padding: 0;
}

.exchange-rates-card__info {
    padding: 0;
}

.exchange-rates-card__table {
    width: 100%;
    overflow-x: auto;
}

/* Exchange Rates Table */
.exchange-rates-table {
    border-collapse: collapse;
    width: 100%;
    background-color: #fff;
    border: none;
}

.exchange-rates-table thead {
    background-color: #fff;
}

.exchange-rates-table__header {
    font-weight: 700;
    font-size: 14px;
    padding: 12px 16px;
    border-bottom: 1px solid #e5e5e5;
    border-right: none;
    border-left: none;
    color: #333;
    text-align: left;
    background-color: #fff;
}

.exchange-rates-table__header.text-end {
    text-align: right;
}

.exchange-rates-table__row {
    border-bottom: 1px solid #e5e5e5;
    border-left: none;
    border-right: none;
}

.exchange-rates-table__row:last-child {
    border-bottom: none;
}

.exchange-rates-table__row td {
    padding: 16px;
    vertical-align: top;
    border: none;
}

.exchange-rates-table__currency {
    padding-left: 16px;
}

.exchange-rates-table__currency-line {
    display: flex;
    align-items: center;
    margin-bottom: 4px;
}

.exchange-rates-table__flag {
    width: 24px;
    height: 24px;
    object-fit: cover;
    border-radius: 50%;
    flex-shrink: 0;
    margin-right: 8px;
}

.exchange-rates-table__currency-code {
    color: var(--color-3);
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
}

.exchange-rates-table__currency-name {
    color: var(--color-3);
    font-size: 13px;
    font-weight: 400;
    margin-left: 32px;
    line-height: 1.4;
}

.exchange-rates-table__rate {
    padding-right: 16px;
}

.exchange-rates-table__rate-value {
    font-weight: 700;
    color: var(--color-3);
    font-size: 14px;
    line-height: 1.5;
}

.exchange-rates-table__action {
    padding-right: 16px;
    min-width: 100px;
}

.exchange-rates-table__link {
    color: var(--color-3);
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.exchange-rates-table__link:hover {
    color: var(--color-1);
    text-decoration: none;
}

.exchange-rates-table__link-text {
    display: inline-block;
}

.exchange-rates-table__link-arrow {
    display: inline-block;
    font-size: 16px;
    line-height: 1;
}

/* Event Detail Page - BEM Methodology */
.event-detail-page {
    position: relative;
}

.event-detail-page__content {
    margin-bottom: 2rem;
}

/* Sidebar */
.event-detail-page__sidebar {
    margin-bottom: 2rem;
}

.event-detail-page__sidebar-sticky {
    position: sticky;
    top: 20px;
}

.event-detail-page__image-wrapper {
    width: 100%;
    overflow: hidden;
    border-radius: 0.375rem;
}

.event-detail-page__image {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 0.375rem;
}

.event-detail-page__image-placeholder {
    height: 400px;
    border-radius: 0.375rem;
}

.event-detail-page__image-placeholder i {
    font-size: 3rem;
}

.event-detail-page__nav {
    margin-top: 1rem;
}

.event-detail-page__nav-item {
    color: var(--color-3);
    padding: 0.5rem 0.75rem;
    margin-bottom: 0.5rem;
    border-radius: 0.25rem;
    transition: all 0.2s ease;
    text-decoration: none;
}

.event-detail-page__nav-item:hover {
    background-color: var(--color-5);
}

.event-detail-page__nav-item--active {
    background-color: var(--color-5);
    border-left: 3px solid var(--color-1);
    font-weight: 700;
    color: var(--color-3) !important;
}

/* Main Content */
.event-detail-page__main-content {
    padding-left: 1.5rem;
}

/* Tickets Section */
.event-tickets__header {
    margin-bottom: 1.5rem;
}

.event-tickets__title {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--color-3);
    margin: 0;
}


.event-tickets__city-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--color-3);
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.event-tickets__item {
    border: 1px solid var(--color-4);
    border-radius: 0.5rem;
    margin-bottom: 1rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    transition: box-shadow 0.2s ease;
}

.event-tickets__item:hover {
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.event-tickets__item-date-line {
    font-size: 0.875rem;
    color: var(--color-3);
    margin-bottom: 1rem;
}

.event-tickets__item-day {
    text-transform: lowercase;
}

.event-tickets__item-date-value {
    font-weight: 700;
    color: #212529;
}

.event-tickets__item-time {
    color: var(--color-3);
}

.event-tickets__item-details {
    min-width: 0;
    overflow: hidden;
    flex: 1;
}

.event-tickets__item-organizer {
    font-size: 0.875rem;
    color: var(--color-3);
    margin-bottom: 0.25rem;
}

.event-tickets__item-title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-3);
    margin-bottom: 0.25rem;
}

.event-tickets__item-location {
    font-size: 0.875rem;
    color: var(--color-3);
}

.event-tickets__item-action {
    text-align: right;
    min-width: 0;
    overflow: hidden;
    flex-shrink: 0;
}

.event-tickets__item-action > div {
    max-width: 100%;
    width: 100%;
    box-sizing: border-box;
}

@media (min-width: 768px) {
    .event-tickets__item-action {
        margin-left: 1rem;
    }
    
    .event-tickets__item-action > div {
        width: auto;
        max-width: 100%;
    }
}

.event-tickets__item-button {
    background-color: var(--color-1);
    border-color: var(--color-1);
    color:#fff;
    font-weight: 600;
    padding: 0.5rem 1rem;
    white-space: normal;
    word-wrap: break-word;
    max-width: 100%;
    width: 100%;
    transition: all 0.2s ease;
    box-sizing: border-box;
    overflow: hidden;
    text-overflow: ellipsis;
}

@media (min-width: 768px) {
    .event-tickets__item-button {
        white-space: nowrap;
        width: auto;
        max-width: 100%;
        overflow: visible;
    }
}

.event-tickets__item-button:hover {
    background-color: var(--color-2);
    border-color: transparent;
    color:var(--color-6);
}

.event-tickets__item-price-info {
    font-size: 0.75rem;
    color: var(--color-3);
    margin-top: 0.5rem;
    line-height: 1.2;
}

/* About Section */
.event-about__title {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--color-3);
    margin-bottom: 1.5rem;
}

.event-about__content {
    line-height: 1.7;
    color: var(--color-3);
}

/* Artists Section */
.event-artists__title {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--color-3);
    margin-bottom: 1.5rem;
}

.event-artists__person {
    margin-bottom: 1rem;
}

.event-artists__person-name {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--color-3);
}

.event-artists__description {
    line-height: 1.7;
    color: var(--color-3);
}

/* Locations Section */
.event-locations__title {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--color-3);
    margin-bottom: 1.5rem;
}

.event-locations__list {
    border: none;
}

.event-locations__item {
    border: 1px solid var(--color-4);
    border-radius: 0.5rem;
    margin-bottom: 0.75rem;
    padding: 1rem;
    background-color: #ffffff;
    transition: box-shadow 0.2s ease;
}

.event-locations__item:hover {
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.event-locations__item-details {
    flex: 1;
}

.event-locations__item-name {
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-3);
    margin-bottom: 0.5rem;
}

.event-locations__item-address,
.event-locations__item-postal-code,
.event-locations__item-region {
    font-size: 0.875rem;
    color: var(--color-3);
    margin-bottom: 0.25rem;
}

.event-locations__item-map-link {
    margin-left: 1rem;
    flex-shrink: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .event-detail-page__main-content {
        padding-left: 0;
        margin-top: 2rem;
    }
    
    .event-detail-page__sidebar-sticky {
        position: relative;
        top: 0;
    }
    
    .event-tickets__header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .event-tickets__calendar-link {
        margin-top: 0.5rem;
    }
    
    .event-tickets__item .d-flex {
        flex-direction: column;
    }
    
    .event-tickets__item-details {
        margin-bottom: 1rem;
        width: 100%;
    }
    
    .event-tickets__item-action {
        margin-left: 0 !important;
        width: 100%;
        text-align: left;
    }
    
    .event-tickets__item-action > div {
        align-items: flex-start !important;
        width: 100%;
    }
    
    .event-tickets__item-button {
        width: 100%;
        white-space: normal;
    }
    
    .event-tickets__item-price-info {
        text-align: left !important;
    }
    
    .event-locations__item {
        flex-direction: column;
    }
    
    .event-locations__item-map-link {
        margin-left: 0;
        margin-top: 1rem;
        width: 100%;
    }
    
    .event-locations__item-map-link .btn {
        width: 100%;
    }
}

/*============= Company Detail ========== */
.company-detail__button {
    border: 1px solid var(--color-4);
    color: var(--color-3);
    font-weight: 400;
    letter-spacing: 0.5px;
    padding: 8px 16px;
    border-radius: 0;
    font-size: 12px;
    background-color: transparent;
    display: inline-block;
    text-align: center;
    vertical-align: middle;
    cursor: pointer;
    transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out;
}
.company-detail__button:hover {
    background-color: var(--color-5);
    color: var(--color-1);
    border-color: var(--color-1);
    text-decoration: none;
    font-weight: 600;
}

.company-detail__map {
    margin-top: 1.5rem;
}

.company-map {
    border-radius: 0.375rem;
    border: 1px solid #dee2e6;
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
    overflow: hidden;
    z-index: 1;
    min-height: 300px;
}

.company-marker {
    background: transparent;
    border: none;
}

.marker-icon {
    font-size: 24px;
    text-align: center;
    line-height: 30px;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
    transition: transform 0.2s ease;
}

.marker-icon:hover {
    transform: scale(1.2);
}

/* Leaflet Popup Styling */
.leaflet-popup-content-wrapper {
    border-radius: 0.375rem;
    box-shadow: 0 0.25rem 0.5rem rgba(0, 0, 0, 0.15);
}

.leaflet-popup-content {
    margin: 12px 16px;
    font-size: 14px;
    line-height: 1.5;
}

.map-popup {
    text-align: center;
    padding: 4px 0;
}

.map-popup strong {
    color: var(--color-3);
    font-weight: 600;
}

/* Leaflet Controls Styling */
.leaflet-control-zoom {
    border: 1px solid #dee2e6;
    border-radius: 0.375rem;
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
}

.leaflet-control-zoom a {
    background-color: #fff;
    color: var(--color-3);
    border-bottom: 1px solid #dee2e6;
}

.leaflet-control-zoom a:hover {
    background-color: #f8f9fa;
    color: var(--color-1);
}

.leaflet-control-zoom-in,
.leaflet-control-zoom-out {
    font-size: 18px;
    line-height: 30px;
}

/* Leaflet Attribution Styling */
.leaflet-control-attribution {
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 0.25rem;
    padding: 4px 8px;
    font-size: 11px;
}

/* Info Popover Enhancement Styles */
.popover .popover-body {
    position: relative;
    padding-right: 2.5rem;
}

.popover .popover-body p {
    margin-bottom: 0.5rem;
}

.popover .popover-body p:last-child {
    margin-bottom: 0;
}

/* Close button for info popover */
.popover-close-btn {
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
    background: none;
    border: none;
    font-size: 1.5rem;
    line-height: 1;
    color: #212529;
    cursor: pointer;
    padding: 0;
    width: 1.5rem;
    height: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0.25rem;
    transition: background-color 0.15s ease-in-out, color 0.15s ease-in-out;
    z-index: 1;
}

.popover-close-btn:hover,
.popover-close-btn:focus {
    background-color: #f8f9fa;
    color: #000000;
    outline: none;
}

.popover-close-btn:focus-visible {
    outline: 2px solid #0d6efd;
    outline-offset: 2px;
}

/* Info Icon Trigger Styles */
.info-icon-trigger {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #6c757d;
    transition: color 0.15s ease-in-out;
    vertical-align: middle;
    margin-left: 0.25rem;
    border: none;
    background: none;
    padding: 0;
}

.info-icon-trigger:hover {
    color: #0d6efd;
}

.info-icon-trigger svg {
    width: 1em;
    height: 1em;
    fill: currentColor;
    pointer-events: none;
}

.info-icon-trigger:focus {
    outline: 2px solid #0d6efd;
    outline-offset: 2px;
    border-radius: 0.25rem;
}

/*============= News Detail Page Rating and Social Share ========== */
.news-detail-page__rating-share {
    padding: 1rem 0;
}

.news-detail-page__social-share {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.news-detail-page__social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #000;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 18px;
}

.news-detail-page__social-link:hover {
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.news-detail-page__social-link--facebook:hover {
    background-color: #1877f2;
}

.news-detail-page__social-link--twitter:hover {
    background-color: #000000;
}

.news-detail-page__social-link--whatsapp:hover {
    background-color: #25d366;
}

.news-detail-page__social-link--pinterest:hover {
    background-color: #bd081c;
}

@media (max-width: 768px) {
    .news-detail-page__rating-share {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .news-detail-page__social-link {
        width: 36px;
        height: 36px;
        font-size: 16px;
    }
}

/*============= Person Detail Page - BEM Methodology ========== */
.person-detail-page {
    position: relative;
}

.person-detail-page__content {
    margin-bottom: 2rem;
}

/* Sidebar */
.person-detail-page__sidebar {
    margin-bottom: 2rem;
}

.person-detail-page__sidebar-sticky {
    position: sticky;
    top: 20px;
}

/* Infobox - Wikipedia Style */
.person-detail-page__infobox {
    background-color: #f9f9f9;
    border: 1px solid #aaa;
    border-radius: 0.375rem;
    overflow: hidden;
}

.person-detail-page__infobox-title {
    font-size: 1.1rem;
    font-weight: 700;
    text-align: center;
    padding: 0.75rem 1rem;
    border-bottom: 1px solid #aaa;
    background-color: #fff;
    color: var(--color-3);
    margin: 0;
}

.person-detail-page__image-wrapper {
    text-align: center;
    padding: 0.75rem 1rem;
    background-color: #fff;
}

.person-detail-page__image {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}

.person-detail-page__image-placeholder {
    background-color: #f8f9fa;
    min-height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1rem;
}

.person-detail-page__image-placeholder i {
    font-size: 5rem;
    color: #6c757d;
}

/* Infobox Table */
.person-detail-page__infobox .table-responsive {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.person-detail-page__infobox .table {
    margin-bottom: 0;
    background-color: #fff;
    width: 100%;
    min-width: 100%;
}

.person-detail-page__infobox .table tbody tr {
    border-bottom: 1px solid #e5e5e5;
}

.person-detail-page__infobox .table tbody tr:last-child {
    border-bottom: none;
}

.person-detail-page__infobox .table td {
    border: none;
    padding: 0.5rem 0.75rem;
    vertical-align: top;
    white-space: normal;
}

.person-detail-page__infobox .table td:first-child {
    background-color: #f8f9fa;
    width: 35%;
    min-width: 100px;
    font-weight: 600;
}

.person-detail-page__infobox .table td:first-child small {
    color: #6c757d;
    font-weight: 600;
}

.person-detail-page__infobox .table td:last-child {
    background-color: #fff;
}

.person-detail-page__infobox .table td:last-child small {
    color: var(--color-3);
}

.person-detail-page__infobox-label {
    border: none !important;
}

.person-detail-page__infobox-value {
    border: none !important;
}

.person-detail-page__infobox-value {
    border: none !important;
}

/* Infobox Category Badge */
.person-detail-page__infobox .category-badge {
    margin: 0;
}

.person-detail-page__infobox-category {
    text-align: center;
    padding: 0.75rem 1rem;
    border-top: 1px solid #aaa;
    background-color: #fff;
}

/* Main Content */
.person-detail-page__main-content {
    padding-left: 1.5rem;
}

.person-detail-page__header {
    margin-bottom: 1.5rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .person-detail-page__main-content {
        padding-left: 0;
        margin-top: 2rem;
    }
    
    .person-detail-page__sidebar-sticky {
        position: relative;
        top: 0;
    }
    
    .person-detail-page__infobox-title {
        font-size: 1rem;
        padding: 0.5rem 0.75rem;
    }
    
    .person-detail-page__image-wrapper,
    .person-detail-page__image-placeholder {
        padding: 0.5rem 0.75rem;
    }
    
    .person-detail-page__infobox .table-responsive {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    .person-detail-page__infobox .table {
        min-width: 100%;
        font-size: 0.875rem;
    }
    
    .person-detail-page__infobox .table td {
        padding: 0.375rem 0.5rem;
        font-size: 0.875rem;
        white-space: normal;
    }
    
    .person-detail-page__infobox .table td:first-child {
        width: auto;
        min-width: 100px;
    }
    
    .person-detail-page__infobox-category {
        padding: 0.5rem 0.75rem;
    }
}

.news-detail-page__author-date{
    font-size: 14px;
}

.badge-spon {
    background-color: var(--color-4);
    color: var(--color-3);
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 12px;
}

.news-detail-page__content-text a,
.article-detail-page__content-text a {
    font-size: 14px;
    line-height: 1.5;
    text-align: justify;
    color: var(--color-1);
    font-weight: 600;
}

/*============= Guide Detail Page - BEM Methodology ========== */
.guide-detail-page {
    position: relative;
}

.guide-detail-page__content {
    margin-bottom: 2rem;
}

/* Sidebar */
.guide-detail-page__sidebar {
    margin-bottom: 2rem;
}

.guide-detail-page__sidebar-sticky {
    position: sticky;
    top: 20px;
}

/* Infobox - Wikipedia Style */
.guide-detail-page__infobox {
    background-color: #f9f9f9;
    border: 1px solid var(--color-4);
    border-radius: 0.375rem;
    overflow: hidden;
}

.guide-detail-page__infobox-title {
    font-size: 1.1rem;
    font-weight: 700;
    text-align: center;
    padding: 0.75rem 1rem;
    border-bottom: 1px solid var(--color-4);
    background-color: #fff;
    color: var(--color-3);
    margin: 0;
}

.guide-detail-page__image-wrapper {
    text-align: center;
    padding: 0.75rem 1rem;
    background-color: #fff;
}

.guide-detail-page__image-wrapper .carousel {
    margin: 0;
}

.guide-detail-page__image-wrapper .carousel-item img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
    border-radius: 0.25rem;
}

.guide-detail-page__image {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}

.guide-detail-page__image-placeholder {
    background-color:var(--color-5);
    min-height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1rem;
}

.guide-detail-page__image-placeholder i {
    font-size: 5rem;
    color: var(--color-3);
}


.guide-detail-page__infobox-location {
    background-color: #fff;
}

.guide-detail-page__infobox-location .guide-map {
    border-radius: 0.25rem;
    overflow: hidden;
}

.guide-detail-page__infobox-location .guide-marker {
    background: transparent;
    border: none;
}

.guide-detail-page__infobox-location .marker-icon {
    font-size: 24px;
    text-align: center;
    line-height: 30px;
}

.guide-detail-page__infobox-source {
    background-color: #fff;
}

.guide-detail-page__infobox-source .btn-link {
    text-decoration: none;
    font-size: 0.875rem;
    word-break: break-word;
}

.guide-detail-page__infobox-source .btn-link:hover {
    text-decoration: underline;
}

.guide-detail-page__infobox .category-badge {
    margin: 0;
}

/* Infobox Table */
.guide-detail-page__infobox .table-responsive {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.guide-detail-page__infobox .table {
    margin-bottom: 0;
    background-color: #fff;
    width: 100%;
    min-width: 100%;
}

.guide-detail-page__infobox .table tbody tr {
    border-bottom: 1px solid #e5e5e5;
}

.guide-detail-page__infobox .table tbody tr:last-child {
    border-bottom: none;
}

.guide-detail-page__infobox .table td {
    border: none;
    padding: 0.5rem 0.75rem;
    vertical-align: top;
    white-space: normal;
}

.guide-detail-page__infobox .table td:first-child {
    background-color: #f8f9fa;
    width: 35%;
    min-width: 100px;
    font-weight: 600;
}

.guide-detail-page__infobox .table td:first-child small {
    color: #6c757d;
    font-weight: 600;
}

.guide-detail-page__infobox .table td:last-child {
    background-color: #fff;
}

.guide-detail-page__infobox .table td:last-child small {
    color: var(--color-3);
}

.guide-detail-page__infobox-label {
    border: none !important;
}

.guide-detail-page__infobox-value {
    border: none !important;
}

/* Main Content */
.guide-detail-page__main-content {
    padding-left: 1.5rem;
}

.guide-detail-page__header {
    margin-bottom: 1.5rem;
}

.guide-detail-page__content {
    margin-bottom: 1.5rem;
}

.guide-detail-page__separator {
    margin: 1.5rem 0;
}

.guide-detail-page__rating {
    margin: 1.5rem 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .guide-detail-page__main-content {
        padding-left: 0;
        margin-top: 2rem;
    }
    
    .guide-detail-page__sidebar-sticky {
        position: relative;
        top: 0;
    }
    
    .guide-detail-page__infobox-title {
        font-size: 1rem;
        padding: 0.5rem 0.75rem;
    }
    
    .guide-detail-page__image-wrapper,
    .guide-detail-page__image-placeholder {
        padding: 0.5rem 0.75rem;
    }
    
    .guide-detail-page__infobox-category,
    .guide-detail-page__infobox-location {
        padding: 0.5rem 0.75rem;
    }
    
    .guide-detail-page__infobox .table-responsive {
        overflow-x: auto;
    }
    
    .guide-detail-page__infobox .table {
        min-width: 100%;
        font-size: 0.875rem;
    }
    
    .guide-detail-page__infobox .table td {
        padding: 0.375rem 0.5rem;
        font-size: 0.875rem;
        white-space: normal;
    }
    
    .guide-detail-page__infobox .table td:first-child {
        width: auto;
        min-width: 100px;
    }
}



/*
====================================
Large Screen - Others
====================================
*/
@media screen and (min-width: 992px) and (max-width: 1199px) {
    .header__menu-link {
        margin-right: 30px;
    }

    .header__submenu {
        width: 190px;
    }
}

/*
====================================
Small Screen - Tablet
====================================
*/
@media screen and (min-width: 768px) and (max-width: 991px) {
    .header__nav-logo img {
        width: 60px;
    }

    .header__menu-link {
        font-size: 13px;
        margin-right: 12px;
    }

    .header__menu-icon {
        font-size: 11px;
        margin-left: 5px;
    }

    .header__submenu {
        width: 160px;
    }

    .header__bottom--fixed .header__nav-logo {
        width: 60px;
        margin-right: 12px;
    }
}

/*
====================================
Small Screen - Mobile
====================================
*/
@media screen and (max-width: 767px) {
    .header {
        position: sticky;
        top: 0;
        left: 0;
        width: 100%;
        z-index: 999;
        box-shadow: rgba(41, 41, 41, 0.06) 0px 2px 4px;
    }

    .header__top {
        border-bottom: none;
    }

    .header__wrapper {
        justify-content: flex-start;
    }
}

footer{
    background-color: var(--color-5);
}

.footer__category-link{
    font-size: 14px;
    line-height: 1.5;
    text-align: justify;
    font-weight: 600;
    padding: 10px 20px;
    border:1px solid var(--color-4);
}
.footer__category-link:hover{
    border:1px solid var(--color-1);
}

.footer__category-link:hover .footer__category-icon{
    fill: var(--color-1);
}

.footer__category-icon {
    display: inline-block;
    width: 32px;
    height: 32px;
    flex-shrink: 0;
    vertical-align: middle;
}

.footer__category-icon svg {
    width: 100%;
    height: 100%;
    display: block;
}

.category-page__subcategory-link{
    font-size: 14px;
    line-height: 1.5;
    text-align: justify;
    font-weight: 600;
    padding: 10px 20px;
    border:1px solid var(--color-4);
}
.category-page__subcategory-link:hover{
    border:1px solid var(--color-1);
}

.category-page__subcategory-link:hover .category-page__subcategory-icon{
    fill: var(--color-1);
}

.category-page__subcategory-icon {
    display: inline-block;
    width: 32px;
    height: 32px;
    flex-shrink: 0;
    vertical-align: middle;
}

.category-page__subcategory-icon svg {
    width: 100%;
    height: 100%;
    display: block;
}

.footer__post-icon {
    display: inline-block;
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    margin-top: 2px;
}

.footer__post-icon svg {
    width: 100%;
    height: 100%;
    display: block;
}

.scrolltotop {
    width: 40px;
    height: 40px;
    line-height: 40px;
    border-radius: 50%;
    background: var(--color-1);
    text-align: center;
    font-size: 22px;
    color: var(--color-6);
    position: fixed;
    right: 30px;
    bottom: 25px;
    display: none;
    animation: lab_top_up 5s linear infinite;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    transition: all 0.3s ease;
    z-index: 999;
}

.scrolltotop img {
    width: 14px;
    margin-top: -4px;
}

@keyframes lab_top_up {
    0% {
        transform: translateY(-15px);
    }
    50% {
        transform: translateY(0px);
    }
    100% {
        transform: translateY(-15px);
    }
}

.pluse,
.pluse2 {
    position: relative;
    top: 10px;
    left: -7px;
    z-index: -1;
}

.pluse::before,
.pluse2::before {
    width: 40px;
    height: 40px;
}

.pluse::after,
.pluse::before,
.pluse2::after,
.pluse2::before {
    background: var(--color-1);
    border-radius: 50%;
    left: 50%;
    top: 50%;
    display: block;
    content: "";
    position: absolute;
    top: 4px;
    left: -1px;
}

.pluse::after,
.pluse2::after {
    width: 30px;
    height: 30px;
    background: transparent;
    margin-left: -15px;
    margin-top: -15px;
}

.pluse::before {
    -webkit-animation: pluse_animate 2.5s infinite linear;
    animation: pluse_animate 2.5s infinite linear;
}

.pluse2::before {
    -webkit-animation: pluse_animate 3s infinite linear;
    animation: pluse_animate 3s infinite linear;
}

@keyframes pluse_animate {
    0% {
        opacity: 1;
        -webkit-transform: translate(-50%, -50%) scale(0.3);
        transform: translate(-50%, -50%) scale(0.3);
    }
    100% {
        opacity: 0;
        -webkit-transform: translate(-50%, -50%) scale(2);
        transform: translate(-50%, -50%) scale(2);
    }
}

.post-content__text{
    
}

/* Bootstrap Icon inline SVG styles */
.bi-icon {
    display: inline-block;
    vertical-align: middle;
    fill: currentColor;
    flex-shrink: 0;
}