/* PDR SECTION LAYOUT */
.section-pdr {
    position: relative;
    padding: 80px 20px;
    background-color: transparent;
    /* Assuming dark background comes from body or parent */
    max-width: 1140px;
    margin: 0px auto;
    width: 100%;
}

.pdr-content-wrapper {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

/* On Desktop: 2 Columns */
@media (min-width: 1025px) {
    .pdr-content-wrapper {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 60px;
        align-items: start;
    }
}

/* TEXT COLUMN */
.pdr-text-column {
    display: flex;
    flex-direction: column;
    gap: 10px;
    color: #ffffff;
    font-family: "Open Sans", Helvetica, Arial, sans-serif;
    font-size: 16px;
    line-height: 1.6;
}

.pdr-text-column h2 {
    font-family: "Oswald", Helvetica, Arial, sans-serif;
    font-size: 48px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
    text-transform: uppercase;
}

/* CARDS GRID (2x2) */
.pdr-cards-grid {
    display: grid;
    grid-template-columns: 1fr;
    /* Mobile: 1 col */
    gap: 20px;
}

@media (min-width: 768px) {
    .pdr-cards-grid {
        grid-template-columns: 1fr 1fr;
        /* Tablet+: 2 cols */
    }
}

/* CARD STYLING */
.pdr-card {
    border: 1px solid #3d424c;
    /* Fixed border "ramecek" */
    border-radius: 12px;
    padding: 30px;
    background-color: rgba(22, 25, 30, 0.4);
    /* Subtle dark background */
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 15px;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.pdr-card:hover {
    border-color: #e71d36;
    transform: translateY(-5px);
}

.pdr-card img {
    width: 40px;
    height: 40px;
    margin-bottom: 15px;
}

.pdr-card h3 {
    font-family: "Oswald", sans-serif;
    font-size: 20px;
    font-weight: 600;
    color: #ffffff;
    margin: 0;
}

.pdr-card p {
    font-family: "Open Sans", sans-serif;
    font-size: 14px;
    color: #a8adb7;
    line-height: 1.5;
    margin: 0;
}

/* Specific Card Layout specific to user image */
/* Top-Left: Oprava bez lakování */
/* Top-Right: Rychlá a Efektivní */
/* Bottom-Left: Ekologicky Šetrné */
/* Bottom-Right: Perfektní Výsledek */