.podcast-wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

@media (max-width: 981px) {
    .podcast-wrapper {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .podcast-wrapper {
        grid-template-columns: 1fr;
    }
}

.single-podcast {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 6px;
}

.podcast-thumb {
    position: relative;
    width: 100%;
}

.podcast-thumb::before {
    content: '';
    display: block;
    padding-top: 75%; /* Pseudo aspect-ratio 4:3 */
    background: #eee; /* Placeholder */
}

.podcast-thumb img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.podcast-title {
    color: var(--Diet-Color-Header, #313131);
    font-family: var(--Diet-Font-Header, Lora);
    font-size: var(--Title-Large-Size, 22px);
    font-style: normal;
    font-weight: 600;
    line-height: 123.5%; /* 27.17px */
    margin: 10px 0;
    margin-bottom: 0;
    padding-bottom: 0;
}

.podcast-content {
    color: var(--Diet-Color-Text, #151515);
    font-family: var(--Diet-Font-Text, Sarabun);
    font-size: var(--Font-size-text-md, 16px);
    font-style: normal;
    font-weight: 400;
    line-height: var(--Line-height-text-md, 24px); /* 150% */
    margin: 5px 0 15px 0;
}

.podcast-links a {
    background: var(--Diet-Primary, #517C63);
    color: #FFF;
    font-family: var(--Diet-Font-Text, Sarabun);
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 22px; /* 122.222% */
    text-align: center;
    padding: 8px 12px;
    margin-right: 5px;
    text-decoration: none;
    display: inline-block;
}

.podcast-links a:hover {
    opacity: 0.8; /* Opcjonalny efekt hover */
}




@media (max-width: 576px) {


.podcast-title {
  font-size: var(--Title-Large-Size, 18px);
}

.podcast-content {
  font-size: var(--Font-size-text-md, 14px);
  line-height: 1.2;
}

.podcast-links a {
  font-size: 14px;
  padding: 5px 12px;
}

.podcast-wrapper {
  gap: 3rem;
}
}