.podcast-list{

    display:flex;
    flex-direction:column;
    gap:22px;

}

.podcast-row{

    display:grid;

    grid-template-columns:

        70px

        1fr

        130px;

    align-items:center;

    gap:24px;

    background:#fff;

    border:1px solid #E6E6E6;

    border-radius:18px;

    padding:26px;

    transition:.25s;

}

.podcast-row:hover{

    border-color:#FFDD00;

    box-shadow:0 8px 24px rgba(0,0,0,.08);

}

.podcast-play{

    width:56px;

    height:56px;

    border-radius:50%;

    background:#FFDD00;

    display:flex;

    justify-content:center;

    align-items:center;

    text-decoration:none;

    color:#000;

    font-size:22px;

    font-weight:bold;

}

.podcast-meta{

    display:flex;

    gap:12px;

    flex-wrap:wrap;

    margin-bottom:10px;

}

.episode-number{

    color:#777;

    font-weight:600;

}

.podcast-category{

    background:#FFDD00;

    border-radius:999px;

    padding:4px 12px;

    font-size:13px;

    font-weight:600;

}

.podcast-title{

    margin:0 0 10px;

    font-size:30px;

}

.podcast-title a{

    color:#111;

    text-decoration:none;

}

.podcast-excerpt{

    margin:0;

    color:#666;

    line-height:1.7;

}

.podcast-date{

    text-align:right;

    color:#777;

    font-weight:600;

}

