:root {
  /* Colors */
    --shs-primary: #0c1f63;
	--shs-secondary: #000000;
	--shs-blue: #1b2d63;
	--shs-green: #62d372;
}

/*==================================================
Hide the profile icon 
==================================================*/
.shs-icons span.fa-user {
    display: none !important;
}

.sh100-menu-logo{
    height:42px;
    width:auto;
    display:block;
}

.menu-item img.sh100-menu-logo{
    display:block;
    height:42px;
    width:auto;
    object-fit:contain;
}

.menu-item a:has(.sh100-menu-logo){
    padding:8px 0;
    display:flex;
    align-items:center;
}

.sh100-event-info {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
	margin-bottom: 15px;
}

.sh100-event-item {
    display: flex;
    align-items: center;
    gap: 7px;
}

.sh100-icon {
    color: #70e471 !important;
    font-size: 17px;
    line-height: 1;
}

.sh100-divider {
    color: #999;
}

/* ===========================
   HERO VIDEO
=========================== */

.sh100-banner {
    width: calc(100% - 60px);
    max-width: 1400px;
    height: 70vh;
    min-height: 500px;
    margin: 0 auto 60px;
    
    border-radius: 24px;
    overflow: hidden;
    
    position: relative;
}

.sh100-banner video {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    border-radius: 24px;
}

.sh100-video{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
    transform:translateZ(0);
    backface-visibility:hidden;
    will-change:transform;
}

.sh100-overlay{
    position:absolute;
    inset:0;
    background:linear-gradient(
        rgba(0,0,0,.15),
        rgba(0,0,0,.65)
    );
    display:flex;
    align-items:flex-end;
}

.sh100-overlay-content{
    padding:70px;
    max-width:700px;
    color:#fff;
}

.sh100-overlay-content h1{
    font-size:56px;
    font-weight:700;
    line-height:1.1;
    margin-bottom:18px;
}

.sh100-overlay-content p{
    font-size:20px;
    line-height:1.7;
    margin-bottom:30px;
}

.sh100-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:14px 28px;
    border-radius:40px;
    background:#F36F21;
    color:#fff;
    text-decoration:none;
    font-weight:600;
    transition:.3s;
}

.sh100-btn:hover{
    background:#d85f19;
}

/*=========================================
SIMPLE HAI JOURNEY
=========================================*/

.sh100-journey{
    background:#fff;
}

.sh100-container{
    width:calc(100% - 60px);
    max-width:1400px;
    margin:0 auto;
}

.sh100-heading{
    text-align:center;
    margin-bottom:50px;
}

.sh100-heading h2{
    font-size:46px;
    font-weight:700;
    color:#111;
    margin-bottom:15px;
}

.sh100-heading p{
    font-size:20px;
    color:#666;
}

.sh100-content{
    max-width:100%;
    font-size:18px;
    line-height:1.7;
    color:#444;
}

.sh100-content p{
    margin-bottom:25px;
}

/* =========================================
   PHOTO GALLERY
========================================= */

.sh100-gallery {
    width: 100%;
    margin: 20px 0 30px;
}

.sh100-gallery-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    grid-auto-rows: 95px;
    gap: 5px;
}

.sh100-gallery-item {
    overflow: hidden;
    border-radius: 6px;
}

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

/* =========================================
   UNEVEN IMAGE GRID - 11 IMAGES
========================================= */

/* Image 1 - large landscape */
.sh100-gallery-item:nth-child(1) {
    grid-column: 1 / 3;
    grid-row: 1 / 3;
}

/* Image 2 - landscape */
.sh100-gallery-item:nth-child(2) {
    grid-column: 3;
    grid-row: 1 / 2;
}

/* Image 3 - portrait/tall */
.sh100-gallery-item:nth-child(3) {
    grid-column: 4;
    grid-row: 1 / 3;
}

/* Image 4 - landscape */
.sh100-gallery-item:nth-child(4) {
    grid-column: 5;
    grid-row: 1 / 2;
}

/* Image 5 - large landscape */
.sh100-gallery-item:nth-child(5) {
    grid-column: 1 / 3;
    grid-row: 3 / 5;
}

/* Image 6 - portrait */
.sh100-gallery-item:nth-child(6) {
    grid-column: 5;
    grid-row: 2 / 4;
}

.sh100-gallery-item:nth-child(6) img {
    object-fit: cover;
    object-position: right;
}

/* Image 7 - small */
.sh100-gallery-item:nth-child(7) {
    grid-column: 3;
    grid-row: 2 / 3;
}

/* Image 8 - small */
.sh100-gallery-item:nth-child(8) {
    grid-column: 3;
    grid-row: 3 / 4;
}

/* Image 9 - landscape */
.sh100-gallery-item:nth-child(9) {
    grid-column: 4;
    grid-row: 3 / 5;
}

/* Image 10 - small */
.sh100-gallery-item:nth-child(10) {
    grid-column: 3;
    grid-row: 4 / 5;
}

/* Image 11 - landscape */
.sh100-gallery-item:nth-child(11) {
    grid-column: 5;
    grid-row: 4 / 5;
}

/* =========================================
   SIMPLE HAI 100 - PODCAST LIBRARY
========================================= */

.sh100-library{
    padding:20px 0 50px;
    background:#fff;
}


/* =========================================
   HEADER
========================================= */

.sh100-library-header{

    display:flex;

    align-items:center;

    justify-content:space-between;

    margin-bottom:30px;

}

.sh100-library-header h2{

    margin:0;

    font-size:38px;

    font-weight:700;

    color: var(--shs-secondary);

}

.sh100-library-header a{

    color: var(--shs-secondary);

    font-size:16px;

    font-weight:700;

    text-decoration:none;

}

.sh100-library-header a:hover{

    text-decoration:underline;

}


/* =========================================
PODCAST LIST
40% LEFT | 60% RIGHT
========================================= */

.sh100-podcast-list {
    display: grid;
    grid-template-columns: 40% minmax(0, 1fr);
    gap: 24px;
    width: 100%;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


/* =========================================
   PODCAST CARD
========================================= */

.sh100-podcast-card {
    display: grid;
    grid-template-columns: 260px minmax(0, 1fr);
    gap: 25px;
    align-items: center;

    padding: 20px;

    background: #fff;
    border-radius: 18px;

    box-shadow: 0 8px 25px rgba(0,0,0,.08);

    min-width: 0;
    width: 100%;
    box-sizing: border-box;
}

/* =========================================
EPISODE 1 - LEFT 40%
========================================= */

.sh100-podcast-card:nth-child(1) {
    grid-column: 1;
    grid-row: 1 / 3;

    display: flex;
    flex-direction: column;

    align-items: stretch;
}


/* Large Episode 1 image */

.sh100-podcast-card:nth-child(1) .sh100-podcast-thumb {
    width: 100%;
    height: 220px;
}


/* Large Episode 1 content */

.sh100-podcast-card:nth-child(1) .sh100-podcast-content {
    padding: 0px 5px 5px;
}


/* =========================================
EPISODE 2 + 3 - RIGHT 60%
========================================= */

.sh100-podcast-card:nth-child(2),
.sh100-podcast-card:nth-child(3) {
    grid-column: 2;

    grid-template-columns: 205px minmax(0, 1fr);

    gap: 20px;

    padding: 15px;
}


/* Episode 2 */

.sh100-podcast-card:nth-child(2) {
    grid-row: 1;
}


/* Episode 3 */

.sh100-podcast-card:nth-child(3) {
    grid-row: 2;
}


/* Right-side thumbnails */

.sh100-podcast-card:nth-child(2) .sh100-podcast-thumb,
.sh100-podcast-card:nth-child(3) .sh100-podcast-thumb {
    width: 210px;
    height: 205px;
}

/* =========================================
   THUMBNAIL
========================================= */

.sh100-podcast-thumb{

    width:260px;

    height:170px;

    overflow:hidden;

    border-radius:12px;

}

.sh100-podcast-thumb img{

    width:100%;

    height:100%;

    object-fit:cover;

    display:block;

}


/* =========================================
   CONTENT
========================================= */

.sh100-podcast-content{

    padding:0;

}

.sh100-podcast-content h3{

    margin:0 0 12px;

    font-size:25px;

    line-height:1.25;

    font-weight:700;

}

.sh100-podcast-content h3 a{

    color:#222;

    text-decoration:none;

}

.sh100-podcast-content h3 a:hover{

    color:#15357A;

}


/* =========================================
   META
========================================= */

.sh100-podcast-meta{

    display:flex;

    align-items:center;

    gap:10px;

    margin-bottom:12px;

    font-size:14px;

    font-weight:600;

    color:#666;

}


/* =========================================
   DESCRIPTION
========================================= */

.sh100-podcast-content p{

    margin:0 0 18px;

    font-size:15px;

    line-height:1.6;

    color:#666;

}


/* =========================================
   BUTTONS
========================================= */

.sh100-podcast-buttons{

    display:flex;

    align-items:center;

    gap:18px;

}


.sh100-watch-btn{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    padding:11px 25px;

    background: var(--shs-secondary);

    color: var(--shs-green) !important;

    border-radius:8px;

    text-decoration:none;

    font-weight:600;

    font-size:14px;

}

.sh100-watch-btn:hover{

    background: var(--shs-secondary);

}


.sh100-read-btn{

    color: var(--shs-secondary);

    font-weight:700;

    text-decoration:none;

    font-size:14px;

}

.sh100-read-btn:hover{

    text-decoration:underline;

}

/* =========================================
   EVENT AGENDA / RUN OF SHOW
========================================= */

.sh100-agenda {
    width: 100%;
    padding: 40px 0;
    margin: 0 auto;
}

.sh100-agenda-container {
    width: calc(100% - 80px);
    max-width: 1400px;
    margin: 0 auto;

    display: grid;
    grid-template-columns: 190px minmax(0, 1fr) 230px;
    gap: 28px;

    align-items: start;
}


/* LEFT HEADING */
.sh100-agenda-heading {
    padding-top: 5px;
}

.sh100-agenda-heading h2 {
    margin: 0 0 14px;
    font-size: 27px;
    line-height: 1.05;
    font-weight: 700;
}

.sh100-agenda-heading p {
    margin: 0;
    font-size: 14px;
    line-height: 1.5;
    color: #666;
}

.sh100-agenda-heading h2::after {
    content: "";
    display: block;
    width: 38px;
    height: 3px;
    background: #55F28A;
    margin-top: 16px;
}


/* TABLE */
.sh100-agenda-table {
    width: 100%;
    overflow: hidden;
}

.sh100-agenda-table table {
    width: 100%;
    border-collapse: collapse;
    table-layout: fixed;
}

.sh100-agenda-table th {
    text-align: left;
    font-size: 11px;
    font-weight: 700;
    color: #555;
    padding: 0 10px 12px;
    border-bottom: 1px solid #ccc;
}

.sh100-agenda-table td {
    font-size: 13px;
    color: #444;
    padding: 10px;
    border-bottom: 1px solid #e5e5e5;
    vertical-align: middle;
}


/* COLUMN WIDTHS */
.sh100-agenda-table th:nth-child(1),
.sh100-agenda-table td:nth-child(1) {
    width: 35px;
}

.sh100-agenda-table th:nth-child(2),
.sh100-agenda-table td:nth-child(2) {
    width: 150px;
	line-height: 1.4;
}

.sh100-agenda-table th:nth-child(3),
.sh100-agenda-table td:nth-child(3) {
    width: 190px;
}

/* HOST NOTE */
.sh100-host-note {
    background: #e9f8ef;
    border-radius: 10px;
    padding: 20px;
}

.sh100-host-note h3 {
    margin: 0 0 15px;
    font-size: 17px;
}

.sh100-host-note p {
    margin: 0 0 12px;
    font-size: 13px;
    line-height: 1.55;
    color: #555;
}

.sh100-host-note p:last-child {
    margin-bottom: 0;
}

/* =========================================
   MEET THE GUESTS
========================================= */

.sh100-guests {
    width: 100%;
    padding: 25px 0 35px;
    background: #fff;
}

.sh100-guests-container {
    width: calc(100% - 80px);
    max-width: 1200px;
    margin: 0 auto;
}

/* =========================================
   HEADING
========================================= */

.sh100-guests-heading {
    text-align: center;
    margin-bottom: 25px;
}

.sh100-guests-heading h2 {
    margin: 0 0 5px;
    font-size: 26px;
    line-height: 1.2;
    font-weight: 700;
}

.sh100-guests-heading p {
    margin: 0;
    font-size: 13px;
    color: #555;
}

/* =========================================
   SLIDER
========================================= */

.sh100-guests-slider {
    display: flex;
    align-items: center;
    gap: 15px;
}

.sh100-guests-track-wrap {
    overflow: hidden;
    flex: 1;
    min-width: 0;
}

.sh100-guests-track {
    display: flex;
    gap: 20px;
    transition: transform 0.5s ease;
    min-width: 0;
}

/* =========================================
   GUEST CARD - DESKTOP
   3 CARDS
========================================= */

.sh100-guest-card {
    flex: 0 0 calc((100% - 40px) / 3);
    box-sizing: border-box;

    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    text-align: center;

    box-shadow: 0 2px 8px rgba(0,0,0,0.12);
    border: 1px solid #eee;
}

.sh100-guest-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    object-position: center top;
    display: block;
}

.sh100-guest-card h3 {
    margin: 10px 5px 3px;
    font-size: 14px;
    line-height: 1.2;
    font-weight: 700;
}

.sh100-guest-card p {
    margin: 0 5px 3px;
    font-size: 11px;
    line-height: 1.3;
    color: #555;
}

.sh100-guest-card span {
    display: block;
    padding: 0 8px 12px;
    font-size: 10px;
    line-height: 1.3;
    color: #777;
}

/* =========================================
   ARROWS
========================================= */

.sh100-guest-prev,
.sh100-guest-next {
    width: 36px;
    height: 36px;
    min-width: 36px;
    border: none;
    border-radius: 50%;
    background: #061b12;
    color: #fff;
    font-size: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.2s ease;
}

.sh100-guest-prev:hover,
.sh100-guest-next:hover {
    background: #55F28A;
    color: #000;
}

/* =========================================
   DOTS
========================================= */

.sh100-guest-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
    margin-top: 15px;
}

.sh100-guest-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #ccc;
    cursor: pointer;
}

.sh100-guest-dot.active {
    background: #55F28A;
    width: 7px;
    height: 7px;
}


/* =========================================
   BRANDING & ASSETS
========================================= */

.sh100-assets {
    width: 100%;
    padding: 45px 0;
}

.sh100-assets-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 220px 1fr;
    align-items: center;
    gap: 35px;
}

/* Left heading */
.sh100-assets-heading h2 {
    margin: 0 0 12px;
    font-size: 28px;
    line-height: 1.1;
    font-weight: 700;
}

.sh100-assets-heading h2::after {
    content: "";
    display: block;
    width: 38px;
    height: 3px;
    background: #55F28A;
    margin-top: 16px;
}

.sh100-assets-heading p {
    margin: 0;
    font-size: 15px;
    line-height: 1.5;
    color: #555;
}

/* Right side */
.sh100-assets-logos {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 35px;
}

/* Every logo block */
.sh100-asset-item {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

/* Label above logo */
.sh100-asset-label {
    display: block;
    width: 100%;
    margin-bottom: 8px;
    font-size: 12px;
    color: #555;
    text-align: center;
}

/* Fixed logo area */
.sh100-asset-logo {
    width: 150px;
    height: 65px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Actual images */
.sh100-asset-logo img {
    max-width: 140px;
    max-height: 55px;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
}

/* Divider */
.sh100-assets-divider {
    width: 1px;
    height: 65px;
    background: #ddd;
    flex: 0 0 1px;
}

/* =========================================
   CONTACT / JOIN US
========================================= */

.sh100-contact {
    width: 100%;
    padding: 30px 0 45px;
}

.sh100-contact-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 365px 1fr;
    min-height: 300px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
}


/* =========================================
   LEFT CONTACT CARD
========================================= */

.sh100-contact-info {
    background: #071b16;
    color: #fff;
    padding: 30px 25px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.sh100-contact-info h2 {
    margin: 0 0 22px;
    font-size: 36px;
    line-height: 1.1;
    color: #55f28a;
}


/* =========================================
   CONTACT ITEMS
========================================= */

.sh100-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 17px;
}

.sh100-contact-icon {
    width: 20px;
    flex: 0 0 20px;
    color: #55f28a;
    font-size: 18px;
    line-height: 1.3;
    text-align: center;
}

.sh100-contact-item strong {
    display: block;
    font-size: 14px;
    line-height: 1.4;
    color: #fff;
}

.sh100-contact-item p {
    margin: 2px 0 0;
    font-size: 12px;
    line-height: 1.4;
    color: #c9d5d1;
}


/* =========================================
   INTERESTED TEXT
========================================= */

.sh100-contact-message {
    margin-top: 5px;
    margin-bottom: 12px;
}

.sh100-contact-message strong {
    display: block;
    font-size: 13px;
    color: #55f28a;
}

.sh100-contact-message p {
    margin: 4px 0 0;
    font-size: 12px;
    color: #c9d5d1;
}


/* =========================================
   EMAIL
========================================= */

.sh100-contact-email {
    display: inline-block;
    width: fit-content;
    padding: 8px 13px;
    border: 1px solid #55f28a;
    border-radius: 6px;
    color: #55f28a;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
}

.sh100-contact-email:hover {
    background: #55f28a;
    color: #071b16;
}


/* =========================================
   MAP
========================================= */

.sh100-contact-map {
    min-height: 300px;
    background: #eee;
}

.sh100-contact-map iframe {
    width: 100%;
    height: 100%;
    min-height: 300px;
    display: block;
    border: 0;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 992px) {

    .sh100-agenda-container {
        grid-template-columns: 170px minmax(0, 1fr);
    }

    .sh100-host-note {
        grid-column: 2;
    }

	 .sh100-guests-container {
        width: calc(100% - 40px);
    }

    .sh100-guest-card {
        flex: 0 0 calc((100% - 20px) / 2);
    }

}


/* =========================================
   MOBILE
========================================= */

@media(max-width:768px){

	.sh100-banner {
		width: calc(100% - 60px);
		max-width: 1400px;
		height: 30vh;
		min-height: 260px;
		margin: 0 auto 60px;
		border-radius: 24px;
		overflow: hidden;
		position: relative;
	}

    .sh100-library-header{
        align-items:flex-start;
        gap:15px;
        flex-direction:column;
    }

    .sh100-podcast-card{
        grid-template-columns:1fr;
    }

    .sh100-podcast-thumb{
        width:100%;
        height:220px;
    }

.sh100-podcast-list {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    .sh100-podcast-card,
    .sh100-podcast-card:nth-child(1),
    .sh100-podcast-card:nth-child(2),
    .sh100-podcast-card:nth-child(3) {
        display: grid;
        grid-template-columns: 1fr;
        width: 100%;
    }

    .sh100-podcast-card .sh100-podcast-thumb,
    .sh100-podcast-card:nth-child(1) .sh100-podcast-thumb,
    .sh100-podcast-card:nth-child(2) .sh100-podcast-thumb,
    .sh100-podcast-card:nth-child(3) .sh100-podcast-thumb {
        width: 100%;
        height: 220px;
    }
	
	.sh100-gallery-grid {
		display: grid;
		grid-template-columns: repeat(5, 1fr);
		grid-auto-rows: 30px;
		gap: 5px;
	}
	
	.sh100-agenda {
        padding: 30px 0;
    }

    .sh100-agenda-container {
        width: calc(100% - 30px);
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .sh100-agenda-heading {
        text-align: center;
    }

    .sh100-agenda-heading h2::after {
        margin: 15px auto 0;
    }

    .sh100-agenda-table {
        overflow-x: auto;
    }

    .sh100-agenda-table table {
        min-width: 650px;
    }

    .sh100-host-note {
        grid-column: auto;
    }
	
	.sh100-podcast-library {
        padding: 50px 0 60px;
    }

    .sh100-podcast-library .sh100-container {
        width: calc(100% - 30px);
    }

    .sh100-podcast-library .sh100-heading h2 {
        font-size: 34px;
    }

    .sh100-podcast-library .sh100-heading p {
        font-size: 17px;
    }

    .sh100-library-card {
        flex: 0 0 300px;
    }

    .sh100-library-image {
        height: 190px;
    }
	
	.sh100-event-info {
        font-size: 14px;
        gap: 10px;
    }
	
	 /* Center green underline */
    .sh100-assets-heading h2::after {
        margin: 15px auto 0;
    }
	
	.sh100-guests-container {
    width: calc(100% - 30px);
}

.sh100-guests-slider {
    width: 100%;
    gap: 8px;
}

.sh100-guests-track-wrap {
    flex: 1;
    min-width: 0;
    width: 100%;
    overflow: hidden;
}

.sh100-guests-track {
    display: flex;
    gap: 0;
    width: 100%;
}

.sh100-guest-card {
    flex: 0 0 100%;
    width: 100%;
    min-width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.sh100-guest-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.sh100-guest-prev,
.sh100-guest-next {
    width: 30px;
    height: 30px;
    min-width: 30px;
    font-size: 14px;
}
	
	.sh100-assets-container {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .sh100-assets-heading {
        text-align: center;
    }

    .sh100-assets-logos {
        flex-wrap: wrap;
        justify-content: center;
        gap: 25px;
    }

    .sh100-asset-item {
        flex: 0 0 140px;
    }

    .sh100-assets-divider {
        display: none;
    }
	
	.sh100-contact {
        width: 100%;
        padding: 40px 25px;
        box-sizing: border-box;
        overflow: hidden;
    }

    .sh100-contact-container {
        display: flex !important;
        flex-direction: column !important;
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 auto !important;
        gap: 25px !important;
        box-sizing: border-box;
    }

    /* Join Us card */
    .sh100-contact-info {
        width: 100% !important;
        max-width: 100% !important;
        flex: none !important;
        margin: 0 !important;
        box-sizing: border-box !important;
        padding: 35px 30px !important;
    }

    .sh100-contact-info h2 {
        font-size: 42px;
        line-height: 1.1;
        margin-bottom: 25px;
    }

    /* Map */
    .sh100-contact-map {
        width: 100% !important;
        max-width: 100% !important;
        flex: none !important;
        margin: 0 !important;
        height: 350px !important;
        box-sizing: border-box !important;
        overflow: hidden !important;
    }

    .sh100-contact-map iframe {
        width: 100% !important;
        height: 100% !important;
        display: block !important;
        border: 0 !important;
    }

    .sh100-contact-info a {
        max-width: 100% !important;
        box-sizing: border-box !important;
        overflow-wrap: anywhere !important;
    }
}


/* =========================================
   MOBILE
========================================= */

@media(max-width:576px){

    .sh100-library{
        padding:50px 0;
    }

    .sh100-library-header h2{
        font-size:30px;
    }

    .sh100-podcast-card{
        padding:15px;
    }

    .sh100-podcast-thumb{
        height:190px;
    }

    .sh100-podcast-content h3{
        font-size:21px;
    }
	
	.sh100-guests {
        padding: 20px 0 30px;
    }

    .sh100-guests-container {
        width: calc(100% - 20px);
        max-width: none;
        margin: 0 auto;
    }

    .sh100-guests-heading h2 {
        font-size: 23px;
        margin-bottom: 5px;
    }

    .sh100-guests-heading p {
        font-size: 12px;
        margin-bottom: 20px;
    }


    /* =========================================
       SLIDER
    ========================================= */

    .sh100-guests-slider {
        position: relative;
        display: flex;
        align-items: center;
        width: 100%;
        gap: 0;
    }


    /* =========================================
       SLIDER VIEWPORT
    ========================================= */

    .sh100-guests-track-wrap {
        width: 100%;
        min-width: 0;
        overflow: hidden;
        position: relative;
    }


    /* =========================================
       TRACK
    ========================================= */

    .sh100-guests-track {
        display: flex;
        flex-wrap: nowrap;
        gap: 0;
        width: max-content;
        margin: 0;
        padding: 0;
        transition: transform 0.45s ease;
        will-change: transform;
    }


    /* =========================================
       CARD
       IMPORTANT:
       Do NOT use 100% here.
       JS sets exact pixel width.
    ========================================= */

    .sh100-guest-card {
        flex-shrink: 0;
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }


    /* =========================================
       CARD IMAGE
    ========================================= */

    .sh100-guest-card img {
        display: block;
        width: 100%;
        height: 170px;
        object-fit: cover;
    }


    /* =========================================
       PREVIOUS / NEXT BUTTONS
    ========================================= */

    .sh100-guest-prev,
    .sh100-guest-next {
        width: 36px;
        height: 36px;
        min-width: 36px;
        padding: 0;

        display: flex;
        align-items: center;
        justify-content: center;
        z-index: 10;
        font-size: 16px;
    }


    /* =========================================
       DOTS
    ========================================= */

    .sh100-guest-dots {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 6px;
        margin-top: 15px;
    }
	
	.sh100-contact {
        padding: 30px 15px !important;
    }

    .sh100-contact-container {
        gap: 20px !important;
    }

    .sh100-contact-info {
        padding: 30px 25px !important;
    }

    .sh100-contact-info h2 {
        font-size: 36px;
    }

    .sh100-contact-map {
        height: 280px !important;
    }

}

/* =========================================
   SIMPLE HAI 100 SPECIAL FOOTER
========================================= */

#sh100-special-footer {
    width: 100%;
    background: #111;
    color: #fff;
    text-align: center;
    padding: 35px 20px 20px;
    box-sizing: border-box;
}

/* LOGO */

#sh100-special-footer .sh100-footer-logo {
    margin-bottom: 20px;
}

#sh100-special-footer .sh100-footer-logo img {
    width: 140px;
    max-width: 100%;
    height: auto;
    display: inline-block;
}

/* COPYRIGHT */

#sh100-special-footer .sh100-footer-copy {
    border-top: 1px solid rgba(255,255,255,0.15);
    padding-top: 15px;
}

#sh100-special-footer .sh100-footer-copy p {
    margin: 0;
    color: #aaa;
    font-size: 11px;
    line-height: 1.5;
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 768px) {

    #sh100-special-footer {
        padding: 30px 15px 18px;
    }

    #sh100-special-footer .sh100-footer-logo img {
        width: 120px;
    }

    #sh100-special-footer .sh100-footer-copy p {
        font-size: 10px;
    }

}