/*@font-face {
    font-family: 'IberPangea';
    src: url('/o/iberdrola-corporativo-theme/fonts/iberpangea/IberPangea-Bold.woff2') format('woff2');
    font-weight: bold;
    font-style: normal;
}

@font-face {
    font-family: 'IberPangea';
    src: url('/o/iberdrola-corporativo-theme/fonts/iberpangea/IberPangea-BoldItalic.woff2') format('woff2');
    font-weight: bold;
    font-style: italic;
}

@font-face {
    font-family: 'IberPangea';
    src: url('/o/iberdrola-corporativo-theme/fonts/iberpangea/IberPangea-Italic.woff2') format('woff2');
    font-weight: normal;
    font-style: italic;
}

@font-face {
    font-family: 'IberPangea';
    src: url('/o/iberdrola-corporativo-theme/fonts/iberpangea/IberPangea-Regular.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'IberPangea';
    src: url('/o/iberdrola-corporativo-theme/fonts/iberpangea/IberPangea-Light.woff2') format('woff2');
    font-weight: 300;
    font-style: normal;
}

@font-face {
    font-family: 'IberPangea';
    src: url('/o/iberdrola-corporativo-theme/fonts/iberpangea/IberPangea-LightItalic.woff2') format('woff2');
    font-weight: 300;
    font-style: italic;
}

@font-face {
    font-family: 'IberPangea';
    src: url('/o/iberdrola-corporativo-theme/fonts/iberpangea/IberPangea-Medium.woff2') format('woff2');
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'IberPangea';
    src: url('/o/iberdrola-corporativo-theme/fonts/iberpangea/IberPangea-SmBold.woff2') format('woff2');
    font-weight: 600;
    font-style: normal;
}

@font-face {
    font-family: 'IberPangea';
    src: url('/o/iberdrola-corporativo-theme/fonts/iberpangea/IberPangea-SmBoldItalic.woff2') format('woff2');
    font-weight: 600;
    font-style: italic;
}
    */

:root {
    --cpodcast-white: #FFFEFF;
    --cpodcast-green: #00A443;
    --cpodcast-dark: #00402A;
    --cpodcast-grey: #5F6971;
    --cpodcast-brown: #615D5A;
    --cpodcast-green-light: #DCEBE1;
    --cpodcast-sand: #FFF5EC;
    --cpodcast-border: #D8CFC7;
}

#cpodcast {
    width: 100%;
    max-width: 1256px;
    margin: 0 auto;
    text-align: center;
    box-sizing: border-box;
    position: relative;
    display: flex;
    flex-direction: column;
    padding: 0;
    border-radius: 15px;
}

#cpodcast * {
    font-family: 'IberPangea' !important;
    font-style: normal;
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

#cpodcast h2 {
    margin-top: 0 !important;
}

#cpodcast ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

#cpodcast ul li:before {
    content: none !important;
    display: none !important;
}

#cpodcast img {
    display: block;
    width: 100%;
}

#cpodcast .cpodcast_media {
    border-radius: 15px;
    overflow: hidden;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

#cpodcast .cpodcast_image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

#cpodcast .cpodcast_info {
    margin-top: 140px;
    padding: 24px 20px;
    border-radius: 15px;
    background: rgba(0, 164, 67, 0.90);
    position: relative;
    z-index: 1;
}

#cpodcast .cpodcast_title {
    color: var(--cpodcast-white) !important;
    font-size: 24px;
    line-height: 1.16;
    font-style: normal;
    font-weight: 600;
    text-wrap: balance;
    text-align: left;
    margin-bottom: 24px;
}

#cpodcast .cpodcast_description {
    color: var(--cpodcast-white) !important;
    font-size: 16px;
    line-height: 1.25;
    font-style: normal;
    font-weight: 500;
    text-wrap: balance;
    text-align: left;
    margin-bottom: 15px;
}

#cpodcast .cpodcast_action {
    display: flex;
    flex-direction: column;
}

#cpodcast .cpodcast_menu {
    width: 100%;
    max-width: 248px;
    position: relative;
    margin-left: 0;
    margin-right: auto;
}

#cpodcast .cpodcast_menu_label {
    display: block;
    padding: 11px 71px 11px 20px;
    position: relative;
    border-radius: 72px;
    border: 1px solid var(--cpodcast-green);
    background: var(--cpodcast-white);
    color: var(--cpodcast-dark);
    font-size: 16px;
    line-height: 1.62;
    font-style: normal;
    font-weight: 500;
    text-align: left;
    position: relative;
    transition: all 0.5s;
}

#cpodcast .cpodcast_menu:hover {
    cursor: pointer;
}

#cpodcast .cpodcast_menu:hover .cpodcast_menu_label {
    background: var(--cpodcast-sand);
}

#cpodcast .cpodcast_menu_label:after {
    content: '';
    display: block;
    width: 10px;
    height: 10px;
    border-top: 1.5px solid var(--cpodcast-green);
    border-right: 1.5px solid var(--cpodcast-green);
    position: absolute;
    top: 15px;
    right: 22px;
    transform: rotate(135deg);
}

#cpodcast .cpodcast_menu_label:before {
    content: '';
    display: block;
    height: 100%;
    background-color: var(--cpodcast-green);
    width: 1px;
    position: absolute;
    top: 0;
    right: 51px;
}

#cpodcast .cpodcast_menu_list {
    max-height: 0;
    overflow: hidden;
    transition: all 0.25s;
    position: absolute;
    top: 100%;
    left: 0;
    width: calc(100% - 51px);
}

#cpodcast .cpodcast_menu_link {
    display: flex;
    padding: 11px 20px;
    border: 1px solid var(--cpodcast-green);
    border-top: none;
    background-color: var(--cpodcast-white);
    color: var(--cpodcast-dark);
    font-size: 16px;
    line-height: 1.62;
    font-style: normal;
    font-weight: 500;
    text-align: left;
    text-decoration: none;
}




#cpodcast .cpodcast_menu_link img {
    max-width: 24px;
    margin-left: auto;
}


#cpodcast .cpodcast_menu_link:hover {
    color: var(--cpodcast-white);
    background-color: var(--cpodcast-green);
}

#cpodcast .cpodcast_menu_item:last-child:hover .cpodcast_menu_link:hover{
    border-radius: 0 0 15px 15px;
}

#cpodcast .cpodcast_menu_link:hover{
    border: 0 1px solid var(--cpodcast-white);
}

#cpodcast .cpodcast_menu_item:first-child .cpodcast_menu_link {
    border-top: 1px solid var(--cpodcast-green);
}

#cpodcast .cpodcast_menu_item:last-child .cpodcast_menu_link {
    border-radius: 0 0 15px 15px;
}

#cpodcast .cpodcast_menu.active .cpodcast_menu_label {
    border-radius: 72px 72px 72px 0;
    background-color: var(--cpodcast-green);
    color: var(--cpodcast-white);
    border-color: var(--cpodcast-white);
}

#cpodcast .cpodcast_menu.active .cpodcast_menu_label:after {
    border-color: var(--cpodcast-white);
}

#cpodcast .cpodcast_menu.active .cpodcast_menu_label:before {
    background-color: var(--cpodcast-white);
}

#cpodcast .cpodcast_menu.active .cpodcast_menu_list {
    max-height: 400px;
    transition: all 0.5s;
}

@media (min-width: 600px) {

    #cpodcast .cpodcast_info {
        margin-top: 185px;
        display: flex;
        align-items: center;
        padding-top: 40px;
        padding-bottom: 40px;
    }

    #cpodcast .cpodcast_title {
        width: calc(100% - 258px);
        margin-right: auto;
        font-size: 28px;
        line-height: 1.14;
        margin-bottom: 0;
    }

    #cpodcast .cpodcast_description {
        text-align: right;
        margin-bottom: 20px;
    }

    #cpodcast .cpodcast_action {
        width: 248px;
    }

    #cpodcast .cpodcast_menu {
        margin-left: auto;
        margin-right: 0;
    }

}

@media (min-width: 800px) {

    #cpodcast .cpodcast_title {
        width: calc(100% - 368px);
        font-size: 32px;
        line-height: 1.12;
    }

    #cpodcast .cpodcast_action {
        width: 358px;
    }

}


@media (min-width: 1300px) {

    #cpodcast .cpodcast_info {
        margin-top: 226px;
        padding: 40px 64px;
    }

    #cpodcast .cpodcast_title {
        width: calc(100% - 374px);
        font-size: 48px;
        line-height: 1;
    }

    #cpodcast .cpodcast_description {
        font-size: 20px;
        margin-bottom: 44px;
    }

    #cpodcast .cpodcast_action {
        width: 302px;
    }

    #column-2 #cpodcast .cpodcast_info {
        margin-top: 185px;
        padding: 40px 32px;
    }

    #column-2 #cpodcast .cpodcast_title {
        width: calc(100% - 258px);
        font-size: 32px;
        line-height: 1.12;
    }

    #column-2 #cpodcast .cpodcast_description {
        font-size: 16px;
        margin-bottom: 20px;
    }

    #column-2 #cpodcast .cpodcast_action {
        width: 248px;
    }

}
