: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;
}

/*==================================================
HOMEPAGE LAYOUT
==================================================*/
.shs-sidebar-card,
.shs-ask-card,
.shs-agony-card,
.shs-newsletter-card{
    width:100%;
    box-sizing:border-box;
}

.shs-homepage{
    max-width:1280px;
    margin:40px auto;
    padding:0 20px;
}

/* ================= Hero ================= */

.shs-hero-layout{
    display:grid;
    grid-template-columns:minmax(0,2.15fr) minmax(0,1fr);
    gap:25px;
    align-items:stretch;
    margin-bottom:40px;
}

.shs-hero-left{
    min-width:0;
}

.shs-hero-right{
    display:grid;
    grid-template-rows:1fr 1fr;
    gap:20px;
    width:100%;
}

.shs-hero-right > *{
    height:100%;
}

/* ============== Remaining Homepage ============== */

.shs-homepage-layout{
    display:grid;
    grid-template-columns:minmax(0,2.15fr) minmax(0,1fr);
    gap:25px;
    align-items:start;
}

.shs-main{
    display:flex;
    flex-direction:column;
    gap:40px;
    min-width:0;
}

.shs-sidebar{
    display:flex;
    flex-direction:column;
    gap:20px;
    min-width:0;
    width:100%;
}

.shs-sidebar > *{
    width:100%;
    margin:0;
}

/* Section spacing */

.shs-podcast-section,
.shs-latest-news-section,
.shs-market-section,
.shs-explainer-section,
.shs-case-study-section{
    width:100%;
}

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

.shs-hero-card{
    position:relative;
    height:450px;
    border-radius:18px;
    overflow:hidden;
}

.shs-hero-card>a{
    display:block;
    width:100%;
    height:100%;
}

.shs-hero-card img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:.5s;
}

.shs-hero-card:hover img{
    transform:scale(1.05);
}

.shs-overlay{
    position:absolute;
    inset:0;
    display:flex;
    flex-direction:column;
    justify-content:flex-end;
    padding:35px;
    background:linear-gradient(
        90deg,
        rgba(0,0,0,.75) 0%,
        rgba(0,0,0,.45) 35%,
        rgba(0,0,0,.15) 70%,
        rgba(0,0,0,0) 100%
    );
    color:#fff;
}

.shs-badge{
    display:inline-block;
    width:max-content;
    background:#d94b39;
    padding:6px 12px;
    border-radius:4px;
    font-size:12px;
    font-weight:700;
    margin-bottom:18px;
}

.shs-overlay h2{
    color:#fff;
    font-size:30px;
    line-height:1.15;
    margin-bottom:16px;
    max-width:55%;
}

.shs-overlay p{
    color:#f3f3f3;
    font-size:13px;
    line-height:1.6;
    max-width:48%;
    margin-bottom:15px;
}

.shs-btn{
    display:inline-block;
    width:max-content;
    background: var(--shs-secondary);

/*     color:#fff; */
	color: var(--shs-green);
    padding:12px 24px;
    border-radius:6px;
    font-weight:600;
}

/*==========================
Ask Simple Hai
==========================*/

a.shs-btn{
/* 	color:#fff !important;  */
color: var(--shs-green) !important;
}

.shs-ask-card {
    background: #FFF7F2;
    border: 1px solid #eee;
    border-radius: 18px;
    padding: 22px;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    height: 100%;
    box-sizing: border-box;
}

.shs-ask-content{
    flex:1;
}

.shs-ask-label{
    display:block;
    font-size:21px;
    font-weight:700;
    color: var(--shs-secondary);
    margin-bottom:8px;
}

.shs-ask-content small{
    display:block;
    color:#b66d2e;
    font-weight:700;
    letter-spacing:.5px;
    margin-bottom:15px;
}

.shs-ask-content h4{
    font-size:18px;
    line-height:1.5;
    font-weight:600;
    margin-bottom:25px;
    color:#222;
}

.shs-ask-image{
    max-width:167px;
    width:100%;
    margin-left:12px;
}

.shs-ask-image img{
    width:100%;
    display:block;
}

/*=============================
Explainers
=============================*/

.shs-explainer-section {
    margin: 10px 0;
}

.shs-section-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.shs-section-title h2 {
    font-size: 30px;
    font-weight: 700;
    margin: 0;
}

.shs-section-title a {
    text-decoration: none;
    color: var(--shs-secondary);
    font-weight: 600;
}

/* ===========================
   EXPLAINER GRID
=========================== */

.shs-explainer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

/* ===========================
   EXPLAINER CARD
=========================== */

.shs-explainer-card {
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, .08);
    transition: .3s;
}

.shs-explainer-card:hover {
    transform: translateY(-4px);
}

.shs-explainer-card a {
    display: flex;
    align-items: stretch;
    height: 160px;
    text-decoration: none;
}

/* IMAGE */

.shs-explainer-image {
    width: 40%;
    flex-shrink: 0;
}

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

/* CONTENT */

.shs-explainer-content {
    width: 60%;
    padding: 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-width: 0;
    box-sizing: border-box;
}

.shs-explainer-content h3 {
    font-size: 16px;
    line-height: 1.35;
    margin: 0 0 8px;
    color: #222;

    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.shs-explainer-content p {
    margin: 0;
    font-size: 13px;
    color: #666;
    line-height: 1.5;

    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

/*=====================================
Sidebar Card
======================================*/

.shs-sidebar-card{
    display:grid;
    grid-template-columns:50% 50%;
    align-items:stretch;
    width:100%;
    min-height:190px;
    box-sizing:border-box;
    border-radius:18px;
    background:#FFF8F2;
    border:1px solid #eee;
    overflow:hidden;
}

.shs-sidebar-content{
    min-width:0;
    padding:22px;
    box-sizing:border-box;
}

.shs-sidebar-image{
    width:100%;
    height:100%;
    min-height:190px;
    overflow:hidden;
}

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

.shs-sidebar-label{
    display:block;
    color: var(--shs-secondary);
    font-weight:700;
    font-size:22px;
    margin-bottom:10px;
}

.shs-sidebar-content h3{
    font-size:15px;
    line-height:1.2;
    margin-bottom:20px;
}

.shs-sidebar-content h3 a{
    color:#222;
    text-decoration:none;
}

.shs-sidebar-link{
    color:#15357A;
    font-weight:700;
    text-decoration:none;
}

a.shs-sidebar-link{
    color: var(--shs-secondary);
}

.shs-sidebar-content p{
    font-size:14px;
    color:#666;
    line-height:1.6;
    margin-bottom:20px;
}

/*======================================
Market
======================================*/

.shs-market-grid{
    display:grid;
    grid-template-columns:repeat(5,1fr);
    gap:18px;
}

.shs-market-card{
    background:#fff;
    border-radius:14px;
    padding:20px;
    box-shadow:0 4px 15px rgba(0,0,0,.08);

    display:flex;
    flex-direction:column;
    gap:10px;
    min-height:90px;
}

.shs-market-card span{
    display:block;
    color:#777;
    font-size:13px;
    margin:0;
}

.shs-market-card h3{
    font-size:20px;
    font-weight:700;
    line-height:1.2;
    margin:6px 0;
}

.shs-market-card small{
    font-size:16px;
    font-weight:600;
    margin-top:4px;
}

.shs-market-card .up{
    color:#008A3D;
}

.shs-market-card .down{
    color:#D0342C;
}

/* ===========================
   Case Study
=========================== */

.shs-case-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:20px;
}

.shs-case-card{
    background:#fff;
    border-radius:14px;
    overflow:hidden;
    box-shadow:0 8px 20px rgba(0,0,0,.08);
    transition:.3s;
}

.shs-case-card:hover{
    transform:translateY(-5px);
}

.shs-case-card img{
    width:100%;
    height:220px;
    object-fit:cover;
}

.shs-case-card h3{
   	padding: 5px 15px 15px;
    font-size:15px;
	line-height: 1.2;
}

.shs-case-card p{
    padding:0 15px 20px;
    color:#666;
	font-size: 13px;
	line-height: 1.2;
}

.shs-case-category{
    display:inline-block;
    margin:16px 18px 8px;
    font-size:12px;
    font-weight:700;
    text-transform:uppercase;
    color:#15357a;   
    letter-spacing:.5px;
}

/*=====================================
Podcast Section
======================================*/

.shs-podcast-wrapper{
    background:#fff;
    border-radius:18px;
    padding:25px;
    box-shadow:0 8px 20px rgba(0,0,0,.08);
}

.shs-podcast-wrapper .shs-section-title{
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-bottom:25px;
}

.shs-podcast-wrapper .shs-section-title h2{
    margin:0;
    font-size:20px;
    font-weight:700;
    text-transform:uppercase;
    color: var(--shs-secondary);
}

.shs-podcast-wrapper .shs-section-title a{
    color: var(--shs-secondary);
    text-decoration:none;
    font-weight:600;
    font-size:15px;
}

/*=====================================
Podcast Card
======================================*/

.shs-podcast-card{
    display:grid;
    grid-template-columns:260px 1fr;
    gap:30px;
    align-items:center;
}

/*=====================================
Podcast Thumbnail
======================================*/

.shs-podcast-thumb{
    height:170px;
}

.shs-podcast-thumb img{
    width:100%;
    height:100%;
    object-fit:cover;
    border-radius:12px;
    display:block;
}

/*=====================================
Podcast Content
======================================*/

.shs-podcast-content{
    padding:0;
}

.shs-podcast-content h3{
    font-size:25px;
    line-height:1.3;
    font-weight:700;
    color:#222;
    margin:0 0 15px;
}

.shs-podcast-content h3 a{
    color:#222;
    text-decoration:none;
}

.shs-podcast-content h3 a:hover{
    color:#15357A;
}

/*=====================================
Episode Meta
======================================*/

.shs-podcast-meta{
    display:flex;
    align-items:center;
    gap:12px;
    margin-bottom:18px;
    font-size:15px;
    color:#666;
    font-weight:600;
}

/*=====================================
Description
======================================*/

.shs-podcast-desc{
    font-size:14px;
    line-height:1.2;
    color:#666;
    margin-bottom:17px;
}

/*=====================================
Buttons
======================================*/

.shs-podcast-buttons{
    display:flex;
    align-items:center;
    gap:18px;
}

.shs-watch-btn{
    background: var(--shs-secondary);
    color: var(--shs-green);
    padding:12px 28px;
    border-radius:8px;
    text-decoration:none;
    font-weight:600;
    transition:.3s;
}

.shs-watch-btn:hover{
    background:#0f285b;
    color:#fff;
}

.shs-read-more{
    color: var(--shs-secondary);
    text-decoration:none;
    font-weight:700;
}

.shs-read-more:hover{
    text-decoration:underline;
}

/*=====================================
Newsletter Card
======================================*/

.shs-newsletter-card{
    width:100%;
    box-sizing:border-box;
    background: var(--shs-secondary);
    color:#fff;
    padding:22px;
    border-radius:18px;
}

.shs-newsletter-card h3{
    color:#fff;
    font-size:26px;
    margin-bottom:15px;
}

.shs-newsletter-card p{
    color:#e8ecf7;
    line-height:1.6;
    margin-bottom:25px;
}

.shs-newsletter-form{
    display:flex;
    flex-direction:column;
    gap:15px;
}

.shs-newsletter-form input{
    padding:14px;
    border:none;
    border-radius:8px;
    font-size:15px;
}

.shs-newsletter-form button{
    background: var(--shs-green);
    color:#fff;
    border:none;
    padding:14px;
    border-radius:8px;
    font-weight:600;
    cursor:pointer;
    transition:.3s;
}

.shs-newsletter-form button:hover{
    background:#b93828;
}

/*=====================================
Latest News
======================================*/

.shs-latest-news-list{
    display:flex;
    flex-direction:column;
    gap:18px;
}

.shs-news-card{
	display: flex;
    align-items: stretch;
    width: 100%;
    overflow: hidden;
	
    background:#fff;
    border-radius:16px;
    box-shadow:0 6px 18px rgba(0,0,0,.08);
}

.shs-news-card a{
    display:flex;
    align-items:center;
    text-decoration:none;
}

.shs-news-image{
	width: 35%;
    flex-shrink: 0;
    display: flex;
    align-self: stretch;
}

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

.shs-news-content{
    flex:1;
    padding:20px;
}

.shs-news-content h3{
    font-size:22px;
    line-height:1.3;
    margin-bottom:10px;
    color:#222;
}

.shs-news-content p{
    font-size:15px;
    line-height:1.2;
    color:#666;
    margin-bottom:15px;
}

.shs-news-content .shs-read-more{
    color: var(--shs-secondary);
    font-weight:700;
}

/* ===========================
   Tablet
=========================== */

@media (max-width: 992px) {

    .shs-hero-layout,
	.shs-homepage-layout{
		grid-template-columns:1fr;
	}

	.shs-sidebar{
    margin-top:30px;
    width:100%;
}

    .shs-hero-card{
        height:420px;
    }

    .shs-overlay{
        padding:30px;
    }

    .shs-overlay h2{
        font-size:25px;
        max-width:80%;
    }

    .shs-overlay p{
        max-width:80%;
        font-size:12px;
    }
	
	.shs-ask-card{
		min-height:auto;
	}
	
	.shs-explainer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .shs-explainer-card a {
        height: 140px;
    }

	.shs-market-grid{
		grid-template-columns:repeat(3,1fr);
	}
	
	 .shs-case-grid{
        grid-template-columns:repeat(2,1fr);
    }
	
	.shs-podcast-card{
        grid-template-columns:220px 1fr;
        gap:20px;
    }

    .shs-podcast-content h3{
        font-size:26px;
    }
	
	.shs-news-image{
		width:180px;
	}

	.shs-news-content h3{
		font-size:20px;
	}

}

/* ===========================
   Mobile
=========================== */

@media (max-width:768px){

    .shs-homepage{
        padding:0 15px;
    }

	.shs-hero-layout,
	.shs-homepage-layout{
		grid-template-columns:1fr;
	}

	.shs-sidebar{
		width:100%;
		margin-top:30px;
		gap:18px;
	}

	.shs-hero-right{
		grid-template-rows:auto auto;
	}

	.shs-main{
		gap:30px;
	}

    .shs-hero-card{
        height:380px;
    }

    .shs-overlay{
        padding:20px;
        justify-content:flex-end;
    }

    .shs-badge{
        font-size:11px;
        padding:5px 10px;
    }

    .shs-overlay h2{
        font-size:15px;
        line-height:1.2;
        max-width:100%;
        margin-bottom:12px;
    }

    .shs-overlay p{
        font-size:10px;
        line-height:1.6;
        max-width:100%;
        margin-bottom:18px;
    }

    .shs-btn{
        padding:10px 18px;
        font-size:14px;
    }
	
	.shs-ask-card{
		flex-direction:column;
		align-items:center;
		text-align:center;
	}

	.shs-ask-image{
		width:140px;
		margin:25px 0 0;
	}

	.shs-ask-content h4{
		font-size:18px;
	}
	
	 .shs-explainer-grid {
        grid-template-columns: 1fr;
    }

    .shs-explainer-card a {
        height: auto;
        min-height: 140px;
    }

    .shs-explainer-image {
        width: 35%;
        min-height: 140px;
    }

    .shs-explainer-content {
        width: 65%;
    }
	
	.shs-sidebar-card{
		grid-template-columns:1fr;
		text-align:center;
	}

	.shs-sidebar-image{
		width:100%;
		height:220px;
		min-height:220px;
	}

	.shs-sidebar-image img{
		width:100%;
		height:100%;
		object-fit:cover;
	}
	
	.shs-market-grid{
		grid-template-columns:repeat(2,1fr);
	}
	
	.shs-podcast-wrapper{
        padding:20px;
    }

    .shs-podcast-wrapper .shs-section-title{
        flex-direction:column;
        align-items:flex-start;
        gap:10px;
    }

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

    .shs-podcast-thumb{
        height:220px;
    }

    .shs-podcast-content h3{
        font-size:24px;
    }

    .shs-podcast-buttons{
        flex-wrap:wrap;
    }
	
	.shs-case-grid{
        grid-template-columns:1fr;
    }
	
	.shs-news-card a{
		flex-direction:column;
	}

	.shs-news-image{
		width:100%;
	}

	.shs-news-image img{
		height:220px;
	}

	.shs-news-content{
		padding:18px;
	}

}

@media (max-width:480px){

    .shs-hero-card{
        height:320px;
    }

    .shs-overlay{
        padding:16px;
    }

    .shs-overlay h2{
        font-size:15px;
    }

    .shs-overlay p{
        display:none;
    }
	
	.shs-hero-content{
        padding:20px;
    }

    .shs-hero-content h2{
        font-size:24px;
    }

    .shs-section-title{
        flex-direction:column;
        align-items:flex-start;
        gap:10px;
    }

	.shs-ask-card{
		padding:18px;
	}

	.shs-ask-label{
		font-size:24px;
	}

	.shs-ask-image{
		width:110px;
	}
	
	.shs-explainer-content h3 {
        font-size: 16px;
    }

    .shs-explainer-content p {
        font-size: 13px;
    }

	.shs-market-grid{
		grid-template-columns:1fr;
	}
	
	.shs-podcast-thumb{
        height:180px;
    }

    .shs-podcast-content h3{
        font-size:20px;
    }

    .shs-podcast-desc{
        font-size:14px;
    }

    .shs-watch-btn{
        width:100%;
        text-align:center;
    }

    .shs-read-more{
        display:block;
        margin-top:12px;
    }

}