.bt-page {
    background: #000;
    color: #fff;
}

.bt-header {
    position: relative;
    width: 100%;
    padding: 150px 0 0;
}

.bt-header-inner {
    max-width: 1920px;
    margin: 0 auto;
    padding: 0 200px 0 200px;
}

.bt-title {
    font-family: 'AktivGrotesk', sans-serif;
    font-weight: 500;
    font-size: 35px;
    line-height: 60px;
    text-transform: uppercase;
    color: #fff;
    margin: 0 0 4px;
    max-width: 1080px;
}

.bt-meta {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 0;
}

.bt-meta-date {
    font-family: 'AktivGrotesk', sans-serif;
    font-weight: 300;
    font-size: 20px;
    color: #e6e6e6;
    line-height: normal;
}

.bt-meta-sep {
    font-family: 'AktivGrotesk', sans-serif;
    font-weight: 100;
    font-size: 24px;
    color: #e6e6e6;
    line-height: normal;
}

.bt-meta-read {
    display: flex;
    align-items: center;
    gap: 4px;
}

.bt-meta-read svg {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.bt-meta-read span {
    font-family: 'AktivGrotesk', sans-serif;
    font-weight: 300;
    font-size: 20px;
    color: #e6e6e6;
    text-align: center;
    line-height: normal;
}

.bt-meta-category {
    font-family: 'AktivGrotesk', sans-serif;
    font-weight: 300;
    font-size: 20px;
    color: #e6e6e6;
    text-align: center;
    line-height: normal;
}

.bt-layout {
    max-width: 1920px;
    margin: 0 auto;
    padding: 40px 200px 0 200px;
    display: flex;
    gap: 60px;
}

.bt-main {
    flex: 1 1 0%;
    min-width: 0;
    max-width: 1080px;
}

.bt-sidebar {
    width: 335px;
    flex-shrink: 0;
    position: sticky;
    top: 20px;
    align-self: flex-start;
}

.bt-hero {
    width: 100%;
    aspect-ratio: 1080 / 608;
    overflow: hidden;
    margin-bottom: 40px;
}

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

.bt-audio {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 14px 0;
    border-top: 0.4px solid #717171;
    border-bottom: 0.4px solid #717171;
    margin-bottom: 20px;
    cursor: pointer;
}

.bt-audio-btn {
    width: 32px;
    height: 32px;
    border: none;
    background: transparent;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    flex-shrink: 0;
    position: relative;
}

.bt-audio-btn svg {
    width: 32px;
    height: 32px;
}

.bt-audio-btn .bt-pause-icon {
    display: none;
}

.bt-audio-btn.playing .bt-play-icon {
    display: none;
}

.bt-audio-btn.playing .bt-pause-icon {
    display: block;
}

.bt-audio-label {
    font-family: 'AktivGrotesk', sans-serif;
    font-weight: 500;
    font-size: 12px;
    color: #fff;
    letter-spacing: 2px;
    text-transform: uppercase;
    line-height: normal;
    white-space: nowrap;
}

.bt-intro {
    font-family: 'AktivGrotesk', sans-serif;
    font-weight: 400;
    font-size: 20px;
    line-height: 36px;
    color: #e6e6e6;
    margin-bottom: 20px;
}

.bt-intro p {
    margin: 0;
}

.bt-intro p + p {
    margin-top: 30px;
}

.bt-intro a,
.bt-intro a:visited {
    color: #8ab4f8 !important;
    text-decoration: underline;
}

.bt-intro a:hover,
.bt-intro a:active {
    color: #aecfff !important;
}

.bt-toc {
    border-top: 0.4px solid #717171;
    border-bottom: 0.4px solid #717171;
    margin-bottom: 20px;
}

.bt-toc-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 18px 20px;
    background: transparent;
    border: none;
    cursor: pointer;
    color: #e6e6e6;
}

.bt-toc-toggle span {
    font-family: 'AktivGrotesk', sans-serif;
    font-weight: 500;
    font-size: 13px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #e6e6e6;
    line-height: normal;
}

.bt-toc-chevron {
    width: 20px;
    height: 20px;
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    flex-shrink: 0;
}

.bt-toc.open .bt-toc-chevron {
    transform: rotate(180deg);
}

.bt-toc.open .bt-toc-toggle {
    border-bottom: 0.4px solid #717171;
}

.bt-toc-list {
    list-style: none;
    margin: 0;
    padding: 0 20px;
    counter-reset: toc-counter;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1),
        padding 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.bt-toc.open .bt-toc-list {
    max-height: 600px;
    padding: 20px;
}

.bt-toc-list li {
    padding: 7px 0;
    opacity: 0;
    transform: translateY(-6px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.bt-toc.open .bt-toc-list li {
    opacity: 1;
    transform: translateY(0);
}

.bt-toc-list li a {
    font-family: 'AktivGrotesk', sans-serif;
    font-weight: 400;
    font-size: 14px;
    color: #a3a3a3;
    text-decoration: none;
    line-height: 22px;
    transition: color 0.2s ease;
    display: flex;
    align-items: center;
    gap: 10px;
}

.bt-toc-list li a::before {
    counter-increment: toc-counter;
    content: counter(toc-counter) '.';
    font-family: 'AktivGrotesk', sans-serif;
    font-weight: 400;
    font-size: 14px;
    color: #717171;
    flex-shrink: 0;
    transition: color 0.2s ease;
    min-width: 20px;
}

.bt-toc-list li a:hover {
    color: #fff;
}

.bt-toc-list li a:hover::before {
    color: #fff;
}

.bt-content-body .bt-tts-block-active {
    background: rgba(255, 255, 255, 0.04);
    border-radius: 4px;
    transition: background 0.4s ease;
}

.bt-tts-word {
    transition: background 0.2s ease, color 0.2s ease;
    border-radius: 3px;
    padding: 0 1px;
}

.bt-tts-word.bt-tts-active {
    background: rgba(255, 213, 0, 0.85);
    color: #000;
}

.bt-content-body {
    margin-bottom: 20px;
}

.bt-content-body h2 {
    font-family: 'AktivGrotesk', sans-serif;
    font-weight: 600;
    font-size: 24px;
    color: #fff;
    margin: 40px 0 0;
    padding-bottom: 0;
    line-height: 32px;
    text-align: left;
}

.bt-content-body h3 {
    font-family: 'AktivGrotesk', sans-serif;
    font-weight: 500;
    font-size: 20px;
    line-height: 28px;
    color: #fff;
    margin: 30px 0 0;
    text-align: left;
}

.bt-content-body h4 {
    font-family: 'AktivGrotesk', sans-serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
    color: #fff;
    margin: 25px 0 0;
    text-align: left;
}

.bt-content-body p {
    font-family: 'AktivGrotesk', sans-serif;
    font-weight: 400;
    font-size: 20px;
    line-height: 36px;
    color: #e6e6e6;
    margin: 30px 0 0;
}

.bt-content-body a,
.bt-content-body a:visited {
    color: #8ab4f8 !important;
    text-decoration: underline;
}

.bt-content-body a:hover,
.bt-content-body a:active {
    color: #aecfff !important;
}

.bt-content-body ul,
.bt-content-body ol {
    padding-left: 40px;
    margin: 15px 0 0;
    color: #e6e6e6;
}

.bt-content-body ul li,
.bt-content-body ol li {
    font-family: 'AktivGrotesk', sans-serif;
    font-weight: 400;
    font-size: 20px;
    line-height: 36px;
    color: #e6e6e6;
    margin-bottom: 8px;
}

.bt-content-body ol li strong,
.bt-content-body ul li strong {
    font-weight: 700;
    color: #fff;
}

/* Reset browser default <figure> side margins used by Strapi image blocks */
.bt-content-body figure {
    margin: 20px 0 0;
    width: 100%;
    max-width: 100%;
}

.bt-content-body figure img {
    display: block;
    width: 250px;
    max-width: 100%;
    height: auto;
}

.bt-intro figure img {
    display: block;
    width: 250px;
    max-width: 100%;
    height: auto;
}

/* Support CKEditor/Strapi image alignment classes (text wrap) */
.bt-content-body figure.image-style-align-left,
.bt-intro figure.image-style-align-left {
    float: left;
    width: 26%;
    max-width: 240px;
    margin: 0px 24px 12px 0;
}

.bt-content-body figure.image-style-align-right,
.bt-intro figure.image-style-align-right {
    float: right;
    width: 26%;
    max-width: 240px;
    margin: 20px 0 12px 24px;
}

.bt-content-body figure.image-style-align-left img,
.bt-content-body figure.image-style-align-right img,
.bt-intro figure.image-style-align-left img,
.bt-intro figure.image-style-align-right img {
    width: 100%;
    max-width: 100%;
    height: auto;
    object-fit: cover;
}

/* Tighter text rhythm for paragraphs wrapping next to aligned images */
.bt-content-body figure.image-style-align-left ~ p,
.bt-content-body figure.image-style-align-right ~ p,
.bt-intro figure.image-style-align-left ~ p,
.bt-intro figure.image-style-align-right ~ p {
    line-height: 22px;
    margin-top: 12px;
    font-size: 18px;
    font-weight: 300;
}

.bt-content-body::after,
.bt-intro::after {
    content: "";
    display: block;
    clear: both;
}

@media only screen and (max-width: 768px) {
    .bt-content-body figure.image-style-align-left,
    .bt-content-body figure.image-style-align-right,
    .bt-intro figure.image-style-align-left,
    .bt-intro figure.image-style-align-right {
        float: none;
        width: 100%;
        max-width: 100%;
        margin: 16px 0;
    }
}

.blog-content table,
.bt-content-body table {
    width: 100%;
    border-collapse: collapse;
    margin: 40px 0;
    background: transparent;
}

.blog-content th,
.blog-content td,
.bt-content-body th,
.bt-content-body td {
    border: 1px solid rgba(255, 255, 255, 0.25);
    padding: 16px 20px;
    text-align: left;
}

.blog-content th,
.bt-content-body th {
    font-weight: 600;
    font-size: 18px;
}

.blog-content td,
.bt-content-body td {
    font-size: 16px;
}

.bt-content-body td figure.image,
.bt-intro td figure.image {
    margin: 0 0 20px;
    width: 100%;
}

.bt-content-body td figure.image img,
.bt-intro td figure.image img {
    width: 100%;
    max-width: 100%;
    aspect-ratio: 16 / 10;
    height: auto;
    object-fit: cover;
}

.bt-content-body figure.table:has(td figure.image),
.bt-intro figure.table:has(td figure.image) {
    width: 100%;
    max-width: 100%;
    margin: 40px 0;
}

.bt-content-body figure.table:has(td figure.image) table,
.bt-intro figure.table:has(td figure.image) table {
    border-collapse: separate;
    border-spacing: 24px 0;
    margin: 0 -12px;
    width: calc(100% + 24px);
}

.bt-content-body figure.table:has(td figure.image) td,
.bt-intro figure.table:has(td figure.image) td {
    width: 50%;
    padding: 0 12px;
    border: 0;
    vertical-align: top;
}

.bt-video {
    width: 100%;
    aspect-ratio: 1080 / 608;
    overflow: hidden;
    margin: 20px 0;
    position: relative;
    background: #5f5f5f;
}

.bt-video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.bt-section-image {
    width: 100%;
    max-width: 100%;
    aspect-ratio: 1080 / 608;
    overflow: hidden;
    margin: 20px 0;
}

.bt-section-image picture {
    display: block;
    width: 100%;
    height: 100%;
}

.bt-section-image img {
    width: 100%;
    height: 100%;
    max-width: 100%;
    object-fit: cover;
    display: block;
}

.bt-testimonial {
    padding-top: 40px;
    margin-bottom: 20px;
}

.bt-testimonial-quote {
    display: flex;
    gap: 25px;
    align-items: flex-start;
}

.bt-testimonial-mark {
    flex-shrink: 0;
    width: 29px;
    height: 27px;
    transform: rotate(180deg);
}

.bt-testimonial-mark svg {
    width: 100%;
    height: 100%;
    display: block;
}

.bt-testimonial-text {
    font-family: 'AktivGrotesk', sans-serif;
    font-weight: 400;
    font-size: 30px;
    color: #e6e6e6;
    line-height: 36px;
    margin: 0;
}

.bt-testimonial-author {
    text-align: right;
    font-family: 'AktivGrotesk', sans-serif;
    font-weight: 400;
    font-size: 25px;
    color: #e6e6e6;
    margin-top: 12px;
    line-height: 30px;
}

.bt-share-bar {
    display: flex;
    align-items: center;
    width: 100%;
    margin-top: 50px;
    padding-bottom: 40px;
}

.bt-share-item {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.bt-share-item a,
.bt-share-item button {
    display: flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    border: none;
    cursor: pointer;
    text-decoration: none;
    color: #fff;
}

.bt-share-item img,
.bt-share-item svg {
    width: 30px;
    height: 30px;
    flex-shrink: 0;
}

.bt-share-item .bt-share-label {
    font-family: 'AktivGrotesk', sans-serif;
    font-weight: 400;
    font-size: 16px;
    color: #fff;
    line-height: 10px;
    white-space: nowrap;
}

.bt-share-item .bt-share-label-copy {
    font-family: 'AktivGrotesk', sans-serif;
    font-weight: 400;
    font-size: 16px;
    color: #fff;
    line-height: 10px;
    text-transform: uppercase;
    white-space: nowrap;
}

.bt-share-divider {
    font-family: 'AktivGrotesk', sans-serif;
    font-weight: 100;
    font-size: 24px;
    color: #e6e6e6;
    line-height: normal;
    flex-shrink: 0;
}

.bt-copy-toast {
    position: fixed;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%) translateY(20px);
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    padding: 12px 28px;
    display: flex;
    align-items: center;
    gap: 10px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0s 0.3s;
    z-index: 99999;
}

.bt-copy-toast.is-visible {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0s 0s;
}

.bt-copy-toast svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.bt-copy-toast span {
    font-family: 'AktivGrotesk', sans-serif;
    font-weight: 400;
    font-size: 14px;
    color: #fff;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

.bt-sidebar-social {
    margin-bottom: 45px;
}

.bt-sidebar-social h3 {
    font-family: 'AktivGrotesk', sans-serif;
    font-weight: 400;
    font-size: 22px;
    color: #fff;
    margin: 0 0 20px;
    line-height: 33px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.bt-sidebar-social-icons {
    display: flex;
    align-items: center;
    gap: 46px;
}

.bt-sidebar-social-icons a,
.bt-sidebar-social-icons button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
}

.bt-sidebar-social-icons img {
    width: 30px;
    height: 30px;
}

.bt-sidebar-social-icons .bt-wa-icon {
    width: 30px;
    height: 30px;
    border: 1px solid #e6e6e6;
    border-radius: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bt-sidebar-social-icons .bt-wa-icon svg {
    width: 15px;
    height: 15px;
}

.bt-sidebar-featured {
    margin-bottom: 45px;
}

.bt-sidebar-featured h3 {
    font-family: 'AktivGrotesk', sans-serif;
    font-weight: 400;
    font-size: 20px;
    color: #fff;
    margin: 0 0 20px;
    line-height: 33px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.bt-sidebar-featured-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.bt-sidebar-featured-item {
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 20px 16px;
}

.bt-sidebar-featured-item a {
    text-decoration: none;
    display: block;
}

.bt-sidebar-featured-title {
    font-family: 'AktivGrotesk', sans-serif;
    font-weight: 400;
    font-size: 14px;
    color: #ffffff;
    text-transform: uppercase;
    line-height: 20.5px;
    margin: 0 0 12px;
}

.bt-sidebar-featured-meta {
    display: flex;
    align-items: center;
    gap: 0;
}

.bt-sidebar-featured-date {
    font-family: 'AktivGrotesk', sans-serif;
    font-weight: 300;
    font-size: 14px;
    color: #FFFFFFCF;
    line-height: 18px;
    white-space: nowrap;
}

.bt-sidebar-featured-line {
    width: 20px;
    height: 1px;
    background:#FFFFFFCF;
    margin: 0 11px;
    flex-shrink: 0;
}

.bt-sidebar-featured-read {
    display: flex;
    align-items: center;
    gap: 4px;
}

.bt-sidebar-featured-read svg {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.bt-sidebar-featured-read span {
    font-family: 'AktivGrotesk', sans-serif;
    font-weight: 300;
    font-size: 14px;
    color: #FFFFFFCF;
    line-height: 18px;
    white-space: nowrap;
}

.bt-sidebar-ad {
    width: 335px;
    height: 335px;
    overflow: hidden;
}

.bt-sidebar-ad a {
    display: block;
    width: 100%;
    height: 100%;
}

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

.bt-project-cards-section {
    padding: 10px 0 0;
}

.bt-project-cards-section .cards-container {
    display: flex;
    justify-content: center;
    gap: 36px;
    flex-wrap: wrap;
    max-width: 1920px;
    margin: 0 auto;
    padding-right: 40px;
}

.bt-project-cards-section .cards-container .card {
    width: 330px;
    height: 500px;
    position: relative;
    overflow: hidden;
    transition: all 0.5s linear !important;
    border: none !important;
    border-radius: 0px !important;
    color: #fff !important;
    box-sizing: border-box;
}

.bt-project-cards-section .cards-container .card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom,
            rgba(0, 0, 0, 0) 60%,
            rgba(0, 0, 0, 1) 100%);
    z-index: 1;
    pointer-events: none;
    transition: all 0.5s ease !important;
}

.bt-project-cards-section .cards-container .card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: bottom;
    position: relative;
    z-index: 0;
}

.bt-project-cards-section .cards-container .card .card-contents {
    width: 100%;
    padding: 32px 40px 0 40px;
    position: absolute;
    bottom: 0%;
    z-index: 2;
    transition: all 1s ease !important;
    text-align: left;
}

.bt-project-cards-section .cards-container .card .card-contents h3 {
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.6px;
    color: #ffffff;
}

.bt-project-cards-section .cards-container .card .card-contents ul {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
    padding: 0;
}

.bt-project-cards-section .cards-container .card .card-contents ul li {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.6px;
    color: #ffffff;
}

.bt-project-cards-section .cards-container .card .card-contents ul li img {
    width: 21px;
    height: 20px;
}

.bt-project-cards-section .cards-container .card .card-contents .arrow {
    width: 35px;
    height: 35px;
    position: absolute;
    right: 10%;
    bottom: 10%;
    transition: all 0.5s ease !important;
    opacity: 1;
    visibility: visible;
}

.bt-project-cards-section .cards-container .card .card-contents .arrow img {
    width: 100%;
    height: 100%;
}

.bt-project-cards-section .cards-container .card .card-contents .property-btn {
    width: 100%;
    text-align: center;
    padding: 15px 0;
    opacity: 0;
    visibility: hidden;
    max-height: 0;
    overflow: hidden;
    margin-top: 0;
    transition: all 0.5s ease !important;
    color: #ffffff;
}

.bt-project-cards-section .cards-container .card:hover .card-contents {
    transform: translateY(-10px);
}

.bt-project-cards-section .cards-container .card:hover::before {
    background: rgba(0, 0, 0, 0.6);
}

.bt-project-cards-section .cards-container .card:hover .property-btn {
    opacity: 1;
    visibility: visible;
    max-height: 50px;
    margin-top: 0px;
    color: #ffffff;
}

.bt-project-cards-section .cards-container .card:hover .arrow {
    opacity: 0;
    visibility: hidden;
}

.bt-cards-carousel.flickity-enabled {
    display: block !important;
    overflow: hidden;
}

.bt-cards-carousel.flickity-enabled .flickity-viewport {
    overflow: hidden;
}

.bt-cards-carousel.flickity-enabled .carousel-cell {
    width: 330px;
    height: 500px;
    margin-right: 36px;
}

.bt-cards-carousel .flickity-prev-next-button,
.bt-cards-carousel .flickity-page-dots {
    display: none !important;
}

.bt-cards-carousel:not(.flickity-enabled) .carousel-cell {
    flex-shrink: 0;
}

.bt-view-all-projects {
    display: flex;
    justify-content: center;
    padding: 20px 0;
}

.bt-view-all-projects .custom-btn {
    min-width: 280px;
    text-align: center;
}

.bt-faq-section {
    width: 100%;
    padding: 0;
}

@media (max-width: 1600px) and (min-width: 1201px) {
    .bt-header-inner {
        padding: 0 120px 0 120px;
    }

    .bt-layout {
        padding-left: 120px;
        padding-right: 120px;
    }
}

@media (max-width: 1200px) {
    .bt-header {
        padding-top: 120px;
    }

    .bt-header-inner {
        padding: 0 40px;
    }

    .bt-title {
        font-size: 32px;
        line-height: 46px;
    }

    .bt-layout {
        flex-direction: column;
        padding-left: 40px;
        padding-right: 40px;
    }

    .bt-main {
        max-width: 100%;
    }

    .bt-sidebar {
        width: 100%;
        position: static;
        padding-top: 0;
        display: grid;
        grid-template-columns: 1fr auto;
        grid-template-rows: auto auto;
        gap: 20px 40px;
    }

    .bt-sidebar-social {
        grid-column: 1;
        grid-row: 1;
        margin-bottom: 0;
        display: none;
    }

    .bt-sidebar-featured {
        grid-column: 1;
        grid-row: 2;
        margin-bottom: 0;
    }

    .bt-sidebar-ad {
        grid-column: 2;
        grid-row: 1 / 3;
        align-self: start;
        width: 335px;
        height: 335px;
    }

    .bt-testimonial-text {
        font-size: 24px;
    }

    .bt-testimonial-author {
        font-size: 20px;
    }
}

@media (max-width: 768px) {
    .bt-header {
        padding: 100px 0 0;
    }

    .bt-header-inner {
        padding: 0 20px;
    }

    .bt-title {
        font-size: 22px;
        line-height: 32px;
    }

    .bt-meta {
        gap: 10px;
    }

    .bt-meta-date {
        font-size: 14px;
    }

    .bt-meta-sep {
        font-size: 18px;
    }

    .bt-meta-read span {
        font-size: 14px;
    }

    .bt-meta-read svg {
        width: 18px;
        height: 18px;
    }

    .bt-meta-category {
        font-size: 14px;
    }

    .bt-layout {
        flex-direction: column;
        gap: 40px;
        padding-left: 20px;
        padding-right: 20px;
    }

    .bt-project-cards-section {
        padding-top: 50px;
    }

    .bt-project-cards-section .cards-container {
        padding-left: 20px;
        padding-right: 20px;
    }

    .bt-cards-carousel.flickity-enabled .carousel-cell {
        width: 280px;
        height: 450px;
        margin-right: 20px;
    }

    .bt-project-cards-section .cards-container .card {
        width: 280px;
        height: 450px;
    }

    .bt-main {
        width: 100%;
    }

    .bt-sidebar {
        width: 100%;
        position: static;
        padding-top: 0;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }

    .bt-sidebar-featured {
        width: 100%;
    }

    .bt-hero {
        margin-bottom: 20px;
    }

    .bt-audio {
        gap: 12px;
        padding: 10px 0;
    }

    .bt-audio-btn {
        width: 28px;
        height: 28px;
    }

    .bt-audio-btn svg {
        width: 28px;
        height: 28px;
    }

    .bt-audio-label {
        font-size: 10px;
        letter-spacing: 1.5px;
    }

    .bt-intro {
        font-size: 16px;
        line-height: 28px;
    }

    .bt-intro p + p {
        margin-top: 20px;
    }

    .bt-toc-toggle {
        padding: 16px 14px;
    }

    .bt-toc-toggle span {
        font-size: 11px;
    }

    .bt-toc-list {
        padding: 0 14px 16px;
    }

    .bt-toc-list li a {
        font-size: 13px;
    }

    .bt-content-body h2 {
        font-size: 20px;
        margin-top: 30px;
    }

    .bt-content-body h3 {
        font-size: 18px;
        line-height: 26px;
        margin-top: 25px;
    }

    .bt-content-body h4 {
        font-size: 16px;
        line-height: 24px;
        margin-top: 20px;
    }

    .bt-content-body p {
        font-size: 16px;
        line-height: 28px;
        margin-top: 20px;
    }

    .bt-content-body ul,
    .bt-content-body ol {
        padding-left: 25px;
        margin-top: 10px;
    }

    .bt-content-body ul li,
    .bt-content-body ol li {
        font-size: 16px;
        line-height: 28px;
        margin-bottom: 4px;
    }

    .bt-video {
        margin: 15px 0;
    }

    .bt-intro table,
    .bt-content-body table,
    .bt-content-body tbody,
    .bt-content-body tr,
    .bt-content-body td,
    .bt-intro tbody,
    .bt-intro tr,
    .bt-intro td {
        display: block;
        width: 100%;
    }

    .bt-content-body figure.table:has(td figure.image) table,
    .bt-intro figure.table:has(td figure.image) table {
        border-spacing: 0 24px;
        margin: 0;
        width: 100%;
    }

    .bt-content-body figure.table:has(td figure.image) td,
    .bt-intro figure.table:has(td figure.image) td {
        padding: 0;
    }

    .bt-testimonial {
        padding-top: 25px;
    }

    .bt-testimonial-quote {
        gap: 15px;
    }

    .bt-testimonial-mark {
        width: 20px;
        height: 18px;
    }

    .bt-testimonial-text {
        font-size: 18px;
    }

    .bt-testimonial-author {
        font-size: 16px;
        margin-top: 8px;
    }

    .bt-share-bar {
        flex-wrap: wrap;
        gap: 15px;
        margin-top: 30px;
        padding-bottom: 80px;
    }

    .bt-share-item {
        flex: 0 0 auto;
    }

    .bt-share-divider {
        display: none;
    }

    .bt-share-item .bt-share-label,
    .bt-share-item .bt-share-label-copy {
        font-size: 12px;
    }

    .bt-share-label, .bt-share-label-copy {
        font-size: 0 !important;
    }

    .bt-sidebar {
        display: none;
    }

    .bt-share-item img,
    .bt-share-item svg {
        width: 24px;
        height: 24px;
    }

    .bt-sidebar-social-icons {
        gap: 30px;
        justify-content: center;
    }

    .bt-sidebar-ad {
        width: 100%;
        height: auto;
        aspect-ratio: 1 / 1;
        max-width: 100%;
    }

    .bt-sidebar-featured-title {
        font-size: 12px;
    }
}

@media (max-width: 450px) {
    .bt-header-inner {
        padding: 0 14px;
    }

    .bt-title {
        font-size: 18px;
        line-height: 26px;
    }

    .bt-meta {
        gap: 8px;
    }

    .bt-meta-date {
        font-size: 12px;
    }

    .bt-meta-sep {
        font-size: 16px;
    }

    .bt-meta-read span {
        font-size: 12px;
    }

    .bt-meta-read svg {
        width: 16px;
        height: 16px;
    }

    .bt-meta-category {
        font-size: 12px;
    }

    .bt-layout {
        padding-left: 14px;
        padding-right: 14px;
    }

    .bt-content-body h2 {
        font-size: 18px;
    }

    .bt-content-body h3 {
        font-size: 16px;
        line-height: 24px;
    }

    .bt-content-body h4 {
        font-size: 14px;
        line-height: 22px;
    }

    .bt-content-body p {
        font-size: 14px;
        line-height: 24px;
    }

    .bt-content-body ul li,
    .bt-content-body ol li {
        font-size: 14px;
        line-height: 24px;
    }

    .bt-testimonial-text {
        font-size: 16px;
    }

    .bt-testimonial-author {
        font-size: 14px;
    }

    .bt-share-bar {
        justify-content: center;
    }
}

.events-blog-carousel {
    min-height: 400px;
}
.events-blog-item h4 {
    background-color: transparent !important;
}

.events-blog-2 .events-blog-carousel .carousel-cell {
    width: 24%;
    margin-right: 25px;
}

.events-blog-2 .events-blog-carousel .events-blog-item-img {
    height: auto;
    min-height: unset;
    border-radius: 0;
}

.events-blog-2 .events-blog-carousel .events-blog-item-img img {
    aspect-ratio: 3 / 2;
    height: auto;
}

.events-blog-card-content {
    padding: 18px 0 0 0;
}

.events-blog-card-content h4 {
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
    min-height: 48px;
    margin: 0 0 14px 0;
    padding: 0;
    text-align: left;
}

.events-blog-2 .events-blog-item .events-blog-tag {
    display: inline-block;
    padding: 6px 16px;
    background-color: #FFFFFF1A;
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 1px;
    color: #fff;
    margin-bottom: 14px;
    position: static;
    bottom: auto;
    right: auto;
}

.events-blog-meta {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: rgb(255 255 255 / 60%);
}

.events-blog-meta time {
    white-space: nowrap;
}

.events-blog-meta span {
    position: static;
    bottom: auto;
    right: auto;
}

.events-blog-meta-sep {
    color: rgb(255 255 255 / 30%);
}

.events-blog-read-time {
    display: flex;
    align-items: center;
    gap: 5px;
    white-space: nowrap;
}

.events-blog-read-time svg {
    flex-shrink: 0;
}

.events-blog-discover-more {
    text-align: center;
    padding: 50px 0 0 0;
}

@media screen and (max-width: 1200px) {
    .events-blog-2 .events-blog-carousel .carousel-cell {
        width: 30%;
    }
}

@media screen and (max-width: 1000px) {
    .events-blog-2 .events-blog-carousel .carousel-cell {
        width: 42%;
    }
}

@media screen and (max-width: 768px) {
    .events-blog-2 .events-blog-carousel .carousel-cell {
        width: 70%;
    }

    .events-blog-card-content h4 {
        font-size: 15px;
        line-height: 22px;
    }
}

@media screen and (max-width: 600px) {
    .events-blog-2 .events-blog-carousel .carousel-cell {
        width: 85%;
        margin-right: 15px;
    }

    .events-blog-carousel {
    min-height: 350px !important;
}
}
