html, body {
  overscroll-behavior: none;
}


body {
    background: linear-gradient(180deg, #ffffff 0%, #ffc0a2 95%);
    background-attachment: fixed;
    min-height: 100vh;
    margin: 0;
    overflow-x: hidden !important;
    overflow-y: auto !important;
}

.programs-scroll-wrapper {
    width: 100%;
    overflow-y: auto;
    padding-bottom: 0;
}

.arrows-left-img {
    position: fixed;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 100;
}

.arrows-right-img {
    position: fixed;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 100;
}

.program-card-imgbox-outer {
    position: relative;
    width: 260px;
    aspect-ratio: 4/3;
    box-sizing: border-box;
    margin: 0 auto 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.program-card-imgbox-border {
    width: 260px !important;
    box-sizing: border-box;
    margin: 0 auto;
    border: 4px solid #ffae85;
    background: rgba(255, 174, 133, 0.47);
    border-radius: 16px 16px 0 0;
    box-shadow: none;
    z-index: 2;
    position: absolute;
    top: 0; left: 0; right: 0; height: 100%;
    width: 100%;
    pointer-events: none;
}

.program-card-imgbox-inner {
    width: 220px;
    aspect-ratio: 4/3;
    background: #fff;

    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 1px 6px #ffae8544;
    position: relative;
    z-index: 2;
}

.program-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border: 3px solid #f76820;
}

.programs-scroll-container {
    margin-left: auto;
    margin-right: auto;
    max-width: 1200px;
    width: 100%;
    padding: 20px;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    align-items: center;
    overflow-x: auto;
    padding-bottom: 32px;
}

.program-card-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 260px;
    margin: 10px;
}

.program-card-titlebox {
    width: 260px;
    box-sizing: border-box;
    margin: 0 auto;
    background: #ff935d62;
    border: 4px solid #ff935d;
    border-radius: 0 0 16px 16px;
    min-height: 75px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 6px;
    margin-bottom: 0;
    position: relative;
    overflow: hidden;
}

.program-card-title {
    font-size: 1.6em;

    font-weight: bold;
    color: #a74a1e;
    font-family: 'Fira Code', monospace;
}