@import url("https://fonts.googleapis.com/css2?family=Outfit:wght@400;500;600;700&family=Sora:wght@600;700;800&family=Material+Symbols+Outlined:wght,FILL@100..700,0..1&display=swap");

:root {
    --potraz-sand: #fcfaf7;
    --potraz-blue: #005696;
    --potraz-blue-dark: #003e6f;
    --potraz-sage: #0f5a47;
    --potraz-sage-light: #16705b;
    --potraz-charcoal: #1e293b;
    --potraz-gold: #f59e0b;
    --potraz-gold-light: #fef3c7;
    --potraz-white: #ffffff;
    --potraz-muted: #64748b;
    --potraz-border: rgba(0, 86, 150, 0.1);
    --potraz-shadow: 0 12px 30px rgba(0, 86, 150, 0.05);
    --potraz-shadow-hover: 0 24px 52px rgba(0, 86, 150, 0.12);
    --potraz-font-sans: "Outfit", sans-serif;
    --potraz-font-heading: "Sora", sans-serif;
    --potraz-radius: 24px;
}

html {
    scroll-behavior: smooth;
}

body#page-site-index {
    background: var(--potraz-sand);
    overflow-x: hidden;
}

.potraz-page {
    background: var(--potraz-sand);
    color: var(--potraz-charcoal);
    font-family: var(--potraz-font-sans);
    line-height: 1.65;
    min-height: 100vh;
    overflow: hidden;
    position: relative;
}

.potraz-page *,
.potraz-page *::before,
.potraz-page *::after {
    box-sizing: border-box;
}

.potraz-page .container {
    margin-left: auto;
    margin-right: auto;
    max-width: none;
    padding-left: 0;
    padding-right: 0;
    width: min(1180px, calc(100% - 32px));
}

.potraz-page h1,
.potraz-page h2,
.potraz-page h3,
.potraz-page h4,
.potraz-brand__text strong {
    color: var(--potraz-charcoal);
    font-family: var(--potraz-font-heading);
    font-weight: 800;
}

.potraz-page p {
    margin-top: 0;
}

.potraz-blob {
    background: linear-gradient(135deg, var(--potraz-blue), var(--potraz-gold));
    border-radius: 42% 58% 70% 30% / 45% 45% 55% 55%;
    filter: blur(90px);
    opacity: 0.07;
    pointer-events: none;
    position: absolute;
    z-index: 0;
}

.potraz-blob--1 {
    height: 500px;
    left: -160px;
    top: 12%;
    width: 500px;
}

.potraz-blob--2 {
    background: linear-gradient(135deg, var(--potraz-sage), var(--potraz-gold));
    border-radius: 70% 30% 52% 48% / 60% 40% 60% 40%;
    bottom: 24%;
    height: 620px;
    right: -220px;
    width: 620px;
}

.potraz-blob--3 {
    height: 420px;
    left: 30%;
    opacity: 0.04;
    top: 56%;
    width: 420px;
}

.potraz-header {
    background: rgba(252, 250, 247, 0.94);
    border-bottom: 1px solid var(--potraz-border);
    position: sticky;
    top: 0;
    transition: box-shadow 0.25s ease, background 0.25s ease;
    z-index: 1000;
}

.potraz-header.is-scrolled {
    background: rgba(252, 250, 247, 0.98);
    box-shadow: var(--potraz-shadow);
}

.potraz-header__inner {
    align-items: center;
    display: flex;
    gap: 1.5rem;
    justify-content: space-between;
    min-height: 86px;
}

.potraz-brand {
    align-items: center;
    color: inherit;
    display: inline-flex;
    gap: 0.85rem;
    min-width: 0;
    text-decoration: none;
}

.potraz-brand:hover {
    color: inherit;
    text-decoration: none;
}

.potraz-brand__logo {
    align-items: center;
    background: var(--potraz-white);
    border: 2px solid var(--potraz-border);
    border-radius: 16px;
    display: inline-flex;
    flex: 0 0 58px;
    height: 58px;
    justify-content: center;
    overflow: hidden;
    width: 58px;
}

.potraz-brand__logo img {
    display: block;
    height: 84%;
    object-fit: contain;
    width: 84%;
}

.potraz-brand__fallback {
    color: var(--potraz-blue);
    font-family: var(--potraz-font-heading);
    font-size: 1.5rem;
    font-weight: 800;
}

.potraz-brand__text {
    display: flex;
    flex-direction: column;
    line-height: 1.15;
}

.potraz-brand__text strong {
    font-size: clamp(1rem, 2vw, 1.45rem);
    letter-spacing: -0.03em;
}

.potraz-brand__text small {
    color: var(--potraz-muted);
    font-size: 0.9rem;
}

.potraz-nav {
    align-items: center;
    display: flex;
    gap: clamp(1rem, 2.5vw, 2.25rem);
}

.potraz-nav a {
    color: var(--potraz-charcoal);
    font-size: 0.95rem;
    font-weight: 700;
    text-decoration: none;
    transition: color 0.2s ease;
    white-space: nowrap;
}

.potraz-nav a:hover {
    color: var(--potraz-blue);
    text-decoration: none;
}

.potraz-button {
    align-items: center;
    border: 2px solid transparent;
    border-radius: var(--potraz-radius);
    display: inline-flex;
    font-size: 0.9rem;
    font-weight: 800;
    justify-content: center;
    line-height: 1.2;
    padding: 0.85rem 1.85rem;
    text-decoration: none;
    transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.25s ease, background 0.25s ease, color 0.25s ease;
}

.potraz-button:hover {
    text-decoration: none;
    transform: translateY(-2px);
}

.potraz-button--primary {
    background: var(--potraz-blue);
    box-shadow: 0 8px 24px rgba(0, 86, 150, 0.16);
    color: var(--potraz-white);
}

.potraz-button--primary:hover {
    background: var(--potraz-blue-dark);
    box-shadow: 0 12px 30px rgba(0, 86, 150, 0.24);
    color: var(--potraz-white);
}

.potraz-button--accent {
    background: var(--potraz-sage);
    box-shadow: 0 8px 24px rgba(15, 90, 71, 0.18);
    color: var(--potraz-white);
}

.potraz-button--accent:hover {
    background: var(--potraz-sage-light);
    color: var(--potraz-white);
}

.potraz-button--outline {
    background: transparent;
    border-color: var(--potraz-white);
    color: var(--potraz-white);
}

.potraz-button--outline:hover {
    background: var(--potraz-white);
    color: var(--potraz-blue);
}

.potraz-button--small {
    font-size: 0.85rem;
    padding: 0.55rem 1.35rem;
}

.potraz-kicker {
    background: var(--potraz-gold-light);
    border-radius: 999px;
    color: var(--potraz-blue);
    display: inline-block;
    font-family: var(--potraz-font-heading);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    margin-bottom: 0.75rem;
    padding: 0.35rem 0.75rem;
    text-transform: uppercase;
}

.potraz-hero {
    background: var(--potraz-charcoal);
    border-bottom-left-radius: 40px;
    border-bottom-right-radius: 40px;
    color: var(--potraz-white);
    overflow: hidden;
    padding: clamp(6rem, 10vw, 9.5rem) 0;
    position: relative;
}

.potraz-hero__media,
.potraz-hero__overlay {
    inset: 0;
    position: absolute;
}

.potraz-hero__media {
    background-position: center;
    background-size: cover;
    z-index: 1;
}

.potraz-hero__overlay {
    background: linear-gradient(90deg, rgba(30, 41, 59, 0.96) 0%, rgba(30, 41, 59, 0.72) 50%, rgba(15, 90, 71, 0.32) 100%);
    z-index: 2;
}

.potraz-hero__content {
    position: relative;
    z-index: 3;
}

.potraz-hero__panel {
    max-width: 790px;
}

.potraz-hero__panel h1 {
    color: var(--potraz-white);
    font-size: clamp(2.55rem, 5.5vw, 4.35rem);
    letter-spacing: -0.04em;
    line-height: 1.08;
    margin-bottom: 1.5rem;
}

.potraz-hero__panel p {
    color: rgba(255, 255, 255, 0.88);
    font-size: clamp(1rem, 1.8vw, 1.15rem);
    line-height: 1.75;
    margin-bottom: 2.75rem;
}

.potraz-hero__panel .potraz-kicker {
    background: rgba(245, 158, 11, 0.2);
    color: var(--potraz-gold);
}

.potraz-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1.25rem;
}

.potraz-section {
    padding: clamp(5rem, 8vw, 7.5rem) 0;
    position: relative;
}

.potraz-section--white {
    background: var(--potraz-sand);
}

.potraz-section--light {
    background: var(--potraz-white);
    border-bottom: 1px solid var(--potraz-border);
    border-radius: 40px;
    border-top: 1px solid var(--potraz-border);
}

.potraz-section__heading {
    margin: 0 auto 5rem;
    max-width: 850px;
    text-align: center;
}

.potraz-section__heading h2,
.potraz-section__header-row h2,
.potraz-about__content h2 {
    font-size: clamp(2.05rem, 4vw, 2.85rem);
    letter-spacing: -0.035em;
    line-height: 1.14;
    margin-bottom: 1.15rem;
}

.potraz-section__heading p,
.potraz-section__header-row p,
.potraz-about__content p {
    color: var(--potraz-muted);
    font-size: 1.08rem;
}

.potraz-section__header-row {
    align-items: flex-end;
    display: flex;
    gap: 2rem;
    justify-content: space-between;
    margin-bottom: 4rem;
}

.potraz-section__header-row > div {
    max-width: 760px;
}

.potraz-grid-2,
.potraz-grid-4,
.potraz-advantage-cards-grid,
.potraz-about__stats,
.potraz-partners-grid,
.potraz-footer__grid {
    display: grid;
}

.potraz-grid-2 {
    gap: 2.25rem;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.potraz-grid-4 {
    gap: 1.5rem;
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.potraz-advantage-split {
    align-items: center;
    display: grid;
    gap: clamp(3rem, 6vw, 5.5rem);
    grid-template-columns: 0.92fr 1.08fr;
}

.potraz-fluid-frame {
    min-height: 560px;
    position: relative;
}

.potraz-fluid-frame__under,
.potraz-fluid-frame__over,
.potraz-fluid-gallery__main,
.potraz-fluid-gallery__sub {
    background-position: center;
    background-size: cover;
    box-shadow: var(--potraz-shadow-hover);
    overflow: hidden;
    position: absolute;
}

.potraz-fluid-frame__under {
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    height: 430px;
    left: 0;
    top: 0;
    width: 84%;
}

.potraz-fluid-frame__over {
    border: 7px solid var(--potraz-white);
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    bottom: 0;
    height: 310px;
    right: 0;
    width: 56%;
}

.potraz-fluid-frame__caption {
    background: var(--potraz-white);
    border-radius: 999px;
    bottom: 1rem;
    box-shadow: var(--potraz-shadow);
    color: var(--potraz-blue);
    font-weight: 800;
    left: 1rem;
    padding: 0.5rem 1rem;
    position: absolute;
}

.potraz-advantage-cards-grid {
    gap: 1.4rem;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.potraz-card,
.potraz-course-card,
.potraz-audience-card {
    background: var(--potraz-white);
    box-shadow: var(--potraz-shadow);
    position: relative;
    transition: transform 0.28s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.28s ease, border-color 0.28s ease;
    z-index: 1;
}

.potraz-card:hover,
.potraz-course-card:hover {
    box-shadow: var(--potraz-shadow-hover);
    transform: translateY(-6px);
}

.potraz-card {
    border: 2px solid transparent;
    border-radius: var(--potraz-radius);
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 2.35rem 2.1rem;
}

.potraz-card:hover {
    border-color: var(--potraz-border);
}

.potraz-icon {
    align-items: center;
    background: var(--potraz-gold-light);
    border-radius: 18px;
    color: var(--potraz-blue);
    display: flex;
    height: 56px;
    justify-content: center;
    margin-bottom: 1.65rem;
    width: 56px;
}

.potraz-card:nth-child(even) .potraz-icon {
    background: rgba(15, 90, 71, 0.08);
    color: var(--potraz-sage);
}

.potraz-icon .material-symbols-outlined {
    font-size: 1.85rem;
}

.potraz-card h3,
.potraz-audience-card h3 {
    font-size: 1.25rem;
    letter-spacing: -0.02em;
    margin-bottom: 0.75rem;
}

.potraz-card p,
.potraz-audience-card p {
    color: var(--potraz-muted);
    font-size: 0.96rem;
    line-height: 1.65;
    margin: 0;
}

.potraz-course-card {
    border-radius: var(--potraz-radius);
    display: flex;
    flex-direction: column;
    height: 100%;
    overflow: hidden;
}

.potraz-course-card__media {
    background-image: linear-gradient(135deg, rgba(0, 86, 150, 0.95), rgba(15, 90, 71, 0.9));
    background-position: center;
    background-size: cover;
    height: 220px;
    position: relative;
}

.potraz-course-card__media::after {
    background: linear-gradient(180deg, rgba(30, 41, 59, 0.05), rgba(30, 41, 59, 0.28));
    content: "";
    inset: 0;
    position: absolute;
}

.potraz-course-card__media--empty {
    background-image: radial-gradient(circle at 20% 20%, rgba(245, 158, 11, 0.26), transparent 32%), linear-gradient(135deg, var(--potraz-blue), var(--potraz-sage));
}

.potraz-pill {
    background: var(--potraz-white);
    border-radius: 999px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
    color: var(--potraz-blue);
    font-size: 0.72rem;
    font-weight: 800;
    left: 1.25rem;
    letter-spacing: 0.1em;
    padding: 0.45rem 1rem;
    position: absolute;
    text-transform: uppercase;
    top: 1.25rem;
    z-index: 2;
}

.potraz-course-card__body {
    display: flex;
    flex: 1;
    flex-direction: column;
    padding: 2.25rem;
}

.potraz-course-card__body h3 {
    font-size: 1.45rem;
    line-height: 1.35;
    margin-bottom: 0.85rem;
}

.potraz-course-card__body p {
    color: var(--potraz-muted);
    flex: 1;
    font-size: 0.98rem;
    line-height: 1.65;
    margin-bottom: 1.75rem;
}

.potraz-course-card__footer {
    align-items: center;
    border-top: 1px solid rgba(0, 86, 150, 0.08);
    display: flex;
    gap: 1rem;
    justify-content: space-between;
    margin-top: auto;
    padding-top: 1.5rem;
}

.potraz-course-card__footer span {
    background: rgba(15, 90, 71, 0.07);
    border-radius: 999px;
    color: var(--potraz-sage);
    font-size: 0.82rem;
    font-weight: 800;
    padding: 0.25rem 0.75rem;
    white-space: nowrap;
}

.potraz-about {
    align-items: center;
    display: grid;
    gap: clamp(3rem, 6vw, 5rem);
    grid-template-columns: 1fr 1fr;
}

.potraz-about__media {
    position: relative;
}

.potraz-fluid-gallery {
    height: 500px;
    position: relative;
}

.potraz-fluid-gallery__main {
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    height: 440px;
    left: 0;
    top: 0;
    width: 82%;
}

.potraz-fluid-gallery__sub {
    border: 6px solid var(--potraz-white);
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    bottom: 0;
    height: 290px;
    right: 0;
    width: 50%;
}

.potraz-about__badge {
    background: var(--potraz-white);
    border-radius: 16px;
    border-top: 4px solid var(--potraz-gold);
    bottom: 2rem;
    box-shadow: 0 15px 45px rgba(0, 86, 150, 0.14);
    left: -1.5rem;
    padding: 1.5rem 2rem;
    position: absolute;
    z-index: 3;
}

.potraz-about__badge strong {
    color: var(--potraz-blue);
    display: block;
    font-size: 2.4rem;
    line-height: 1;
    margin-bottom: 0.25rem;
}

.potraz-about__badge span {
    color: var(--potraz-charcoal);
    font-size: 0.85rem;
    font-weight: 800;
}

.potraz-about__stats {
    gap: 1.5rem;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin: 3rem 0;
}

.potraz-about__stats-item {
    background: var(--potraz-white);
    border: 1px solid var(--potraz-border);
    border-radius: 16px;
    box-shadow: var(--potraz-shadow);
    padding: 1.25rem 1.5rem;
}

.potraz-about__stats-item strong {
    color: var(--potraz-blue);
    display: block;
    font-size: 1.25rem;
    margin-bottom: 0.25rem;
}

.potraz-about__stats-item span {
    color: var(--potraz-muted);
    display: block;
    font-size: 0.85rem;
    line-height: 1.45;
}

.potraz-text-link {
    align-items: center;
    color: var(--potraz-blue);
    display: inline-flex;
    font-weight: 800;
    gap: 0.5rem;
    text-decoration: none;
    transition: color 0.2s ease, gap 0.2s ease;
}

.potraz-text-link:hover {
    color: var(--potraz-charcoal);
    gap: 0.75rem;
    text-decoration: none;
}

.potraz-text-link .material-symbols-outlined {
    font-size: 1.2rem;
}

.potraz-mobile-link {
    display: none;
    margin-top: 2.5rem;
    text-align: center;
}

.potraz-audience-card {
    border: 2px solid transparent;
    border-radius: 18px;
    padding: 2rem 1.75rem;
}

.potraz-audience-card:hover {
    border-color: rgba(15, 90, 71, 0.18);
    box-shadow: var(--potraz-shadow-hover);
    transform: scale(1.03);
}

.potraz-audience-card h3 {
    color: var(--potraz-sage);
}

.potraz-partners-section {
    background: var(--potraz-sand);
    padding: 4rem 0;
}

.potraz-partners-title {
    color: var(--potraz-muted);
    font-family: var(--potraz-font-heading);
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    margin-bottom: 1.5rem;
    text-align: center;
    text-transform: uppercase;
}

.potraz-partners-grid {
    align-items: center;
    gap: 1rem;
    grid-template-columns: repeat(8, minmax(0, 1fr));
}

.potraz-partner-logo {
    align-items: center;
    background: var(--potraz-white);
    border: 1px solid var(--potraz-border);
    border-radius: 18px;
    box-shadow: var(--potraz-shadow);
    color: var(--potraz-charcoal);
    display: inline-flex;
    font-family: var(--potraz-font-heading);
    font-size: 0.9rem;
    font-weight: 800;
    height: 78px;
    justify-content: center;
    letter-spacing: 0.02em;
    padding: 1rem;
    text-align: center;
}

.potraz-partner-logo img {
    display: block;
    max-height: 46px;
    max-width: 100%;
    object-fit: contain;
}

.potraz-purpose-banner {
    background-attachment: fixed;
    background-position: center;
    background-size: cover;
    border-radius: 40px;
    color: var(--potraz-white);
    margin: 0 1.5rem 4rem;
    overflow: hidden;
    padding: clamp(5rem, 7vw, 6.5rem) 0;
    position: relative;
}

.potraz-purpose-banner__overlay {
    background: linear-gradient(90deg, rgba(30, 41, 59, 0.96) 0%, rgba(30, 41, 59, 0.72) 50%, rgba(15, 90, 71, 0.42) 100%);
    inset: 0;
    position: absolute;
    z-index: 1;
}

.potraz-purpose-banner__content {
    align-items: center;
    display: flex;
    gap: 4rem;
    justify-content: space-between;
    position: relative;
    z-index: 2;
}

.potraz-purpose-banner__text {
    max-width: 720px;
}

.potraz-purpose-banner h2 {
    color: var(--potraz-white);
    font-size: clamp(2rem, 3.2vw, 2.6rem);
    letter-spacing: -0.035em;
    line-height: 1.16;
    margin-bottom: 1rem;
}

.potraz-purpose-banner p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.08rem;
    margin-bottom: 0;
}

.potraz-footer {
    background: #12100e;
    color: #a3a2a1;
    font-size: 0.9rem;
    padding: 6.5rem 0 2.5rem;
}

.potraz-footer__grid {
    gap: 3.5rem;
    grid-template-columns: 1.4fr repeat(3, 1fr);
    margin-bottom: 5rem;
}

.potraz-footer__brand p {
    color: #a3a2a1;
    line-height: 1.6;
    margin-top: 1.25rem;
}

.potraz-brand--footer .potraz-brand__logo {
    border-color: rgba(255, 255, 255, 0.14);
}

.potraz-brand--footer .potraz-brand__text strong {
    color: var(--potraz-white);
}

.potraz-footer h4 {
    color: var(--potraz-white);
    font-size: 0.9rem;
    letter-spacing: 0.15em;
    margin-bottom: 1.75rem;
    text-transform: uppercase;
}

.potraz-footer ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.potraz-footer li {
    align-items: flex-start;
    display: flex;
    gap: 0.75rem;
    margin-bottom: 0.9rem;
}

.potraz-footer a {
    color: #a3a2a1;
    text-decoration: none;
    transition: color 0.2s ease;
}

.potraz-footer a:hover {
    color: var(--potraz-white);
    text-decoration: none;
}

.potraz-footer li .material-symbols-outlined {
    color: var(--potraz-gold);
    flex: 0 0 auto;
    font-size: 1.25rem;
}

.potraz-footer__bottom {
    align-items: center;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: space-between;
    padding-top: 2rem;
}

.potraz-footer__bottom-links {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.potraz-moodle-content {
    border: 0;
    clip: rect(0, 0, 0, 0);
    clip-path: inset(50%);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    white-space: nowrap;
    width: 1px;
}

[data-reveal] {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-reveal].is-visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 1199.98px) {
    .potraz-grid-4,
    .potraz-partners-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

@media (max-width: 991.98px) {
    .potraz-header__inner {
        align-items: stretch;
        flex-direction: column;
        gap: 1.25rem;
        padding-bottom: 1.25rem;
        padding-top: 1.25rem;
    }

    .potraz-nav {
        justify-content: center;
        overflow-x: auto;
        padding-bottom: 0.25rem;
    }

    .potraz-header__actions {
        display: flex;
        justify-content: center;
    }

    .potraz-advantage-split,
    .potraz-about {
        grid-template-columns: 1fr;
    }

    .potraz-fluid-frame,
    .potraz-fluid-gallery {
        margin: 0 auto;
        max-width: 620px;
    }

    .potraz-purpose-banner__content {
        align-items: flex-start;
        flex-direction: column;
        gap: 2rem;
    }

    .potraz-footer__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 767.98px) {
    .potraz-page .container {
        width: min(100% - 24px, 1180px);
    }

    .potraz-brand__text small {
        display: none;
    }

    .potraz-grid-2,
    .potraz-grid-4,
    .potraz-advantage-cards-grid,
    .potraz-about__stats,
    .potraz-footer__grid,
    .potraz-partners-grid {
        grid-template-columns: 1fr;
    }

    .potraz-text-link--desktop {
        display: none;
    }

    .potraz-mobile-link {
        display: block;
    }

    .potraz-section__header-row {
        align-items: flex-start;
        flex-direction: column;
        margin-bottom: 2.75rem;
    }

    .potraz-fluid-frame {
        min-height: 430px;
    }

    .potraz-fluid-frame__under,
    .potraz-fluid-gallery__main {
        height: 330px;
    }

    .potraz-fluid-frame__over,
    .potraz-fluid-gallery__sub {
        height: 220px;
    }

    .potraz-about__badge {
        bottom: 0.75rem;
        left: 0.75rem;
        padding: 1rem 1.25rem;
    }

    .potraz-course-card__footer {
        align-items: flex-start;
        flex-direction: column;
    }

    .potraz-purpose-banner {
        background-attachment: scroll;
        border-radius: 0;
        margin: 0;
    }

    .potraz-footer__bottom {
        align-items: flex-start;
        flex-direction: column;
    }
}

@media (max-width: 520px) {
    .potraz-header__inner {
        min-height: auto;
    }

    .potraz-brand__logo {
        flex-basis: 50px;
        height: 50px;
        width: 50px;
    }

    .potraz-nav {
        justify-content: flex-start;
    }

    .potraz-button {
        width: 100%;
    }

    .potraz-hero__actions {
        flex-direction: column;
    }
}
