.ps-image-with-button {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 25px;
    width: 100%;
    margin-bottom: 30px;
}

.ps-image-with-button .img-wrapper {
    max-width: 100%;
}

.ps-image-with-button .img-wrapper img {
    max-width: 100%;
    height: auto;
    display: block;
}

.ps-image-with-button .action-btn {
    background-color: var(--primary-color);
    border: 2px solid var(--primary-color);
    color: #fff;
    padding: 12px 25px;
    text-transform: uppercase;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    border-radius: 4px;
    display: inline-block;
    transition: all 0.3s ease;
}

.ps-image-with-button .action-btn:hover {
    background-color: var(--primary-color-hover, transparent);
    color: var(--primary-color-hover, #fff);
    text-decoration: none;
    filter: brightness(0.85);
}