.yzd-odmeny {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.yzd-odmeny-row {
    display: flex;
    align-items: center;
    margin-bottom: 0;
    gap: 20px;
    padding: 20px 0;
}

.yzd-odmeny-image {
    flex: 0 0 300px;
}

.yzd-odmeny-image img {
    width: 100%;
    height: auto;
    display: block;
}

.yzd-odmeny-box {
    flex: 1;
    padding: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px -1px rgb(0 0 0/0.1), 0 2px 4px -2px rgb(0 0 0/0.1);
    border-radius: 10px;
    border: 1px solid rgb(235, 235, 235);
}

.yzd-odmeny-box:hover {
    box-shadow: 0 10px 15px -3px rgb(0 0 0/0.1),0 4px 6px -4px rgb(0 0 0/0.1);
}

.yzd-odmeny-subtitle {
    font-size: 12px;
    font-weight: 500;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 4px;
}

.yzd-odmeny-subtitle b {
    color: rgb(230, 109, 69);
}

.yzd-odmeny-title {
    font-size: 22px;
    font-weight: bold;
}

.yzd-odmeny-description {
    margin-top: 20px;
}

.yzd-odmeny-description a {
    background-color: #fff;
    border: 2px solid rgb(250, 220, 204);
    border-radius: 8px;
    cursor: pointer;
    color: rgb(230, 109, 69);
    display: block;
    font-size: 14px;
    letter-spacing: 2px;
    margin-top: 20px;
    padding: 12px 24px;
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
    transition: all 0.15s cubic-bezier(.4,0,.2,1);
}

.yzd-odmeny-description a:hover,
.yzd-odmeny-description a:focus {
    background-color: rgb(250, 220, 204);
    border-color: rgb(230, 109, 69);
    color: rgb(230, 109, 69);
}

.yzd-odmeny-description ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.yzd-odmeny-description li {
    position: relative;
    padding-left: 25px;
    line-height: 1.5;
}

.yzd-odmeny-description li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #000;
    font-weight: bold;
}

.yzd-odmeny-description li:last-child {
    margin-bottom: 0;
}

@media (max-width: 1024px) {
    .yzd-odmeny-image {
        flex: 0 0 200px;
    }
}

@media (max-width: 768px) {
    .yzd-odmeny-row {
        flex-direction: column;
    }

    .yzd-odmeny-image {
        flex: 0 0 auto;
        width: 100%;
    }

    .yzd-odmeny-box {
        width: 100%;
    }

    .yzd-odmeny-description {
        margin-left: 0;
    }
}