/* Layout Styles
======================================= */
.gopro-slide {
    position: relative;
    background: white;
}

.gopro-slide:has(.gopro-content-light) {
    background: black;
}

.gopro-slide-content {
    position: absolute;
    display: flex;
    gap: 20px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    width: 40%;
}

.gopro-content-light {
    color: #FFF;
}

.gopro-slide-content-1 {
    bottom: 20%;
    left: 8%;
}

.gopro-slide-content-2,
.gopro-slide-content-3,
.gopro-slide-content-4,
.gopro-slide-content-5 {
    height: 100%;
    top: 0;
    left: 8%;
}

.gopro-mounts {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    gap: 20px;
    margin-top: 40px;
}

.gopro-mounts>img {
    min-height: 300px;
    object-fit: cover;
}

.gopro-quik {
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 20px;
}

.gopro-quik>img, 
.gopro-quik-content {
    width: 50%;
}

.gopro-quik-content {
    display: flex;
    flex-direction: column;
    padding: 40px;
    gap: 20px;
}

.gopro-button {
    background: black;
    color: white;
    padding: 8px 12px;
    text-decoration: none;
    border-radius: 4px;
    text-transform: uppercase;
    font-weight: 600;
    font-size: 0.8rem;
    margin: 10px 0;
}

.gopro-content-light .gopro-button {
    background: white;
    color: black;
}

.gopro-product-cards {
    display: flex;
    flex-direction: row;
    height: 600px;
}

.gopro-card {
    background: lightgray;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    gap: 20px;
}

.gopro-download-buttons {
    display: flex;
    gap: 20px;
    margin-top: 20px;
}

.gopro-download-buttons img {
    display: flex;
    gap: 20px;
    margin-top: 20px;
    height: 40px;
}

/* Font Styles
======================================= */
.hn-main-container {
    font-family: lato, sans-serif;
    font-size: 16px;
}

.hn-main-container h2 {
    margin-bottom: 0;
}

.hn-main-container span {
    line-height: 140%;
    font-weight: 600;
}

/* Media Queries
======================================= */
@media screen and (max-width: 760px) {
    .gopro-slide-content {
        width: 80%;
        left: 0;
        right: 0;
        margin: 0 auto;
        padding: 20px;
    }

    .gopro-content-light::not(a) { text-shadow: 4px 4px 8px rgba(0,0,0,0.6);}

    .gopro-slide { height: 600px; }
    
    .gopro-slide-bg>img { opacity: 0.6; }

    .gopro-slide>img,
    .gopro-slide a>img {
        height: 100%;
        object-fit: cover;
        object-position: top 0 right -200px;
    }

    .hn-main-container h2 { font-size: 32px; }
    .hn-main-container span { font-size: 24px;  }

    .gopro-slide-content-6 { top: 0px; }

    .gopro-quik {
        flex-direction: column;
        overflow: hidden;
    }

    .gopro-quik>img {
        height: 240px;
        object-fit: cover;
        scale: 1.3;
    }

    .gopro-quik>img, 
    .gopro-quik-content { width: 100%; }

    .gopro-quik-content { 
        z-index: 2;
        align-items: center;
        text-align: center;
        padding: 0;
    }

    .gopro-mounts>img {
        min-height: 180px;
        object-fit: cover;
    }

    .gopro-product-cards { flex-direction: column; }

    .gopro-card { height: 100%; }
}