/* style/payment-methods.css */

/* Base styles for the page content, ensuring light text on dark background */
.page-payment-methods {
    background-color: var(--site-bg, #0A0A0A); /* Fallback to custom dark background */
    color: #FFF6D6; /* Main text color for dark background */
    font-family: Arial, sans-serif;
    line-height: 1.6;
}

/* Hero Section */
.page-payment-methods__hero-section {
    position: relative;
    display: flex;
    flex-direction: column; /* Image above text */
    align-items: center;
    padding: 10px 20px 60px; /* Small top padding, more bottom padding */
    text-align: center;
    overflow: hidden; /* Ensure image doesn't overflow */
}

.page-payment-methods__hero-image-wrapper {
    width: 100%;
    max-width: 1920px; /* Max width for the image */
    margin-bottom: 30px; /* Space between image and text */
}

.page-payment-methods__hero-image {
    width: 100%;
    max-width: 250px;
    height: auto;
    object-fit: cover;
    border-radius: 5px;
    margin-bottom: 20px;
    min-height: 200px; /* Ensure minimum size */
}