/* ========================================
   Podcast Why Conversations Section
======================================== */
.podcast_why_conversations_section {
	background-color: var(--color-soft-white);
	padding: 140px 0 120px 0;
	position: relative;
	z-index: 1;
	background-size: cover;
	background-repeat: no-repeat;
	overflow: hidden;
}
.pwc_top_shape {
	position: absolute;
	top: 0;
	z-index: 1;
	pointer-events: none;
	width: 103%;
	left: -30px;
}
.pwc_top_shape img {
	width: 100%;
	height: 70px;
	left: 0;
}
/* ========================================
   Header
======================================== */
.pwc_header {
    max-width: 720px;
    margin: 0 auto 46px auto;
}

.pwc_eyebrow {
    display: inline-block;
    font-family: 'Inter Tight', sans-serif;
    font-size: 12px;
    font-weight: 600;
    line-height: 1;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--color-accent-green);
    padding: 8px 15px;
    border: 1px solid #e8e1d3;
    border-radius: 999px;
    background-color: var(--color-off-white);
    margin-bottom: 18px;
}

.pwc_title {
    font-size: var(--font-size-56);
    line-height: 1.05;
    letter-spacing: -1.06px;
    color: var(--color-brown);
    margin: 0 0 18px 0;
}

.pwc_subtitle {
    font-family: 'Inter Tight', sans-serif;
    font-size: var(--font-size-20);
    line-height: 1.55;
    color: var(--color-dark-gray);
    margin: 0;
}

/* ========================================
   Topic Cards Grid
======================================== */
.pwc_grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    max-width: 940px;
    margin: 0 auto;
}

.pwc_card {
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    gap: 15px;
    background: var(--color-white);
    border: 1px solid #ECECEC;
    border-radius: 16px;
    padding: 18px 20px;
    box-shadow: 0px 8px 24px rgba(20, 40, 30, 0.06);
    transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease, background 0.18s ease;
    border-left: 0px;
}

/* Left accent bar (reveals on hover) */
.pwc_card::after {
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	width: 4px;
	height: 100%;
	background: linear-gradient(#e4812d57, #e4812d);
	transform: scaleY(0);
	transform-origin: bottom;
	transition: transform 0.25s ease;
}

.pwc_card:hover {
	transform: translateY(-6px);
	border-color: var(--color-orange);
	background: #fbfdfb;
	box-shadow: 0px 22px 44px rgba(190, 150, 50, 0.22);
}

.pwc_card:hover::after {
    transform: scaleY(1);
}

.pwc_card_icon {
    flex: none;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-size: 23px;
    line-height: 1;
    background: linear-gradient(150deg, #e9f3ed, #f5efe5);
    box-shadow: inset 0 0 0 1px rgba(205, 162, 63, 0.20);
    transition: transform 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}

.pwc_card_icon_img {
    width: 24px;
    height: 24px;
    object-fit: contain;
    display: block;
}

.pwc_card:hover .pwc_card_icon {
	transform: scale(1.12) rotate(-4deg);
	background: linear-gradient(150deg, #e4812d57, #e4812d);
	box-shadow: 0 8px 18px rgba(190, 150, 50, 0.35);
}

.pwc_card_label {
    font-family: 'Inter Tight', sans-serif;
    font-size: 15px;
    font-weight: 600;
    line-height: 1.32;
    color: #26332D;
    transition: color 0.2s ease;
}

.pwc_card:hover .pwc_card_label {
	color: var(--color-orange);
}
.pwc_card:last-child {
    grid-column: 2;
}

/* ========================================
   Responsive
======================================== */
@media screen and (max-width: 1800px) {
  .podcast_why_conversations_section {
	padding: 120px 0 100px 0;
}
}

@media screen and (max-width: 1360px) {
  .podcast_why_conversations_section {
	padding: 110px 0 80px 0;
}
.pwc_top_shape {
	width: 105%;
}
}

@media screen and (max-width: 992px) {
.podcast_why_conversations_section {
	padding: 90px 0 70px 0;
}
    .pwc_header {
        margin-bottom: 40px;
    }
    .pwc_top_shape {
	top: -30px;
}
}

@media screen and (max-width: 820px) {
    .pwc_grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
}

@media screen and (max-width: 768px) {
  .podcast_why_conversations_section {
	padding: 80px 0 60px 0;
}
    .pwc_card {
        padding: 16px 18px;
    }
    .pwc_top_shape {
	width: 114%;
}
}

@media screen and (max-width: 480px) {
 .podcast_why_conversations_section {
	padding: 80px 0 50px 0;
}
    .pwc_grid {
        grid-template-columns: 1fr;
        max-width: 420px;
        gap: 14px;
    }
    .pwc_card:last-child {
	grid-column: unset;
}
}
