.pdr-tabbed-section {
    background: var(--color-black);
    padding: 80px 0 170px;
}

.pdr-tabbed-section .pdr-container {
    width: 100%;
}

.pdr-tabbed-section h2 {
    color: var(--color-white);
    font-family: var(--font-family-secondary);
    font-weight: var(--font-weight-heavy);
    font-size: var(--font-size-h2-smaller);
    line-height: 34px;
    max-width: 100%;
    margin: 0 auto 25px;
    text-align: center;
    text-transform: uppercase;
    width: 365px;
}

.pdr-tabbed-section h2 span {
    display: none;
}

.pdr-tabbed-section-logo {
    margin-bottom: 35px;
    text-align: center;
}

.pdr-tabbed-section-logo img {
    margin: 0 auto;
    max-width: 100%;
    width: 610px;
}

.pdr-tabbed-section-tabs-wrap {
    border-bottom: 4px solid var(--prodog-yellow);
    padding-bottom: 25px;
}

.pdr-tabbed-section-tabs {
    display: grid;
	grid-template-columns: repeat(3, calc((100% - 76px) / 3));
	gap: 38px;
    margin: 0 auto;
    max-width: 100%;
    padding: 0 20px;
    width: 1120px;
}

.pdr-button-tab {
    align-items: center;
    background: var(--prodog-yellow);
    border-radius: 45px;
    display: flex;
    font-family: var(--font-family-secondary);
    font-size: 25px;
    font-weight: var(--font-weight-heavy);
    height: 90px;
    justify-content: center;
}

.pdr-button-tab.active,
.pdr-button-tab:hover {
    background: var(--color-white);
}

.pdr-tabbed-section-content-wrap {
    color: var(--color-white);
    margin: 0 auto;
    padding: 45px 20px 0;
    max-width: 100%;
    text-align: center;
    width: 965px;
}

.pdr-tabbed-section-tab-content-wrap {
    display: none;
    opacity: 0;
    transition: var(--transition-medium);
}

.pdr-tabbed-section-content-wrap {
    position: relative;
    min-height: 300px; /* or whatever fits your tallest block */
}

.pdr-tabbed-section-tab-content-wrap.pdr-tab-show {
    display: block;
    opacity: 1;
}

.pdr-tabbed-section-tab-content h3 {
    color: var(--prodog-yellow);
    font-family: var(--font-family-secondary);
    font-weight: var(--font-weight-heavy);
    font-size: var(--font-size-h2);
    margin-bottom: 45px;
    text-align: center;
    text-transform: uppercase;
}

.pdr-tabbed-section-tab-content p {
    font-size: 20px;
    margin-bottom: 30px;
}

.pdr-tabbed-section-tab-content p a {
    border-color: var(--color-white);
    color: var(--color-white);
}

.pdr-tabbed-section-tab-content p a:hover {
    border-color: var(--prodog-yellow);
    color: var(--prodog-yellow);
}

.pdr-tabbed-section-tab-content p:last-of-type {
    margin-bottom: 0;
}

.pdr-tabbed-section-tab-content p strong {
    color: var(--prodog-yellow);
    font-weight: 700;
}

@media (max-width: 1099px) {

    .pdr-tabbed-section-logo img {
    	width: 500px;
    }

    .pdr-tabbed-section-tabs {
    	grid-template-columns: repeat(3, calc((100% - 40px) / 3));
    	gap: 20px;
    }

}

@media (max-width: 899px) {

    .pdr-tabbed-section-logo img {
    	width: 450px;
    }

    .pdr-button-tab {
    	height: 70px;
    }

}

@media (max-width: 767px) {

    .pdr-tabbed-section-logo img {
    	width: 400px;
    }

    .pdr-tabbed-section h2 {
    	margin-bottom: 10px;
    }

    .pdr-button-tab {
        font-size: 20px;
    	height: 70px;
    }

    .pdr-tabbed-section-tabs {
    	grid-template-columns: repeat(3, calc((100% - 20px) / 3));
    	gap: 10px;
    }

    .pdr-tabbed-section {
    	padding: 35px 0 50px;
    }

}

@media (max-width: 599px) {

    .pdr-tabbed-section-tabs {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }

    .pdr-button-tab {
        font-size: 18px;
    	height: 50px;
    }

    .pdr-tabbed-section-tab-content h3 {
    	margin-bottom: 25px;
    }

    .pdr-tabbed-section-tab-content p {
    	font-size: 17px;
    	margin-bottom: 15px;
    }

    .pdr-tabbed-section-logo img {
    	width: 300px;
    }

}
