.commun-hero {
    width: 100%;
    height: 700px;
    position: relative;
}

.commun-hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: relative;
    z-index: 1;
}

.commun-hero-overlay {
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.35));
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 2;
    width: 100%;
    height: 100%;
    user-select: none;
    text-align: center;
}

.commun-hero-overlay h1 {
    font-weight: 700;
    font-size: 70px;
    color: white;
    margin: 0 0 10px 0;
}

.commun-hero-overlay p {
    color: white;
    font-size: 28px;
    font-style: italic;
    font-weight: 300;
    max-width: 90vw;
    margin: 0;
}

@media (max-width: 1000px) {
    .commun-hero-overlay h1 {
        font-size: 40px;
    }

    .commun-hero-overlay p {
        font-size: 18px;
    }
}


/* Community - INTRO */
.commun-intro {
    background-color: #f9f9f9;
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
    padding: 100px 0;
    row-gap: 40px;
    column-gap: 40px;
    flex-wrap: wrap;
}

.commun-intro-image-wrap {
    width: 500px;
    height: 350px;
    max-width: 75vw;
    max-height: calc(0.7 * 75vw);
    position: relative;
}

.commun-intro-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 30px;
    position: relative;
    z-index: 1;
}

.commun-intro-image-wrap::before {
    position: absolute;
    z-index: 0;
    width: 40%;
    height: 60%;
    top: -12px;
    left: -12px;
    content: '';
    border-top: double 8px var(--accent-color);
    border-left: double 8px var(--accent-color);
    border-radius: 40px 0 0 0;
}

.commun-intro-image-wrap::after {
    position: absolute;
    z-index: 0;
    width: 40%;
    height: 60%;
    bottom: -12px;
    right: -12px;
    content: '';
    border-bottom: double 8px #000;
    border-right: double 8px #000;
    border-radius: 0 0 40px 0;
}

.commun-intro-content {
    width: 700px;
    max-width: 85vw;
}

.commun-intro-content h2 {
    font-size: 35px;
    font-weight: 600;
    margin: 0 0 10px 0;
}

.commun-intro-content h3 {
    margin: 0 0 15px 0;
    font-size: 26px;
    font-weight: 600;
    position: relative;
}

.commun-intro-content h3::after {
    width: 70px;
    height: 5px;
    border-radius: 0 5px 5px 0;
    background-color: var(--accent-color);
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
}

.commun-intro-content p {
    font-size: 18px;
    margin: 0 0 20px 0;
}



/* COMMUNITY - Keny's Donuts */
.com-keny {
    padding: 100px 0;
    background-color: white;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap-reverse;
    column-gap: 150px;
    row-gap: 40px;
    position: relative;
}

.com-keny::before {
    width: 60%;
    content: '';
    position: absolute;
    left: 20%;
    height: 10px;
    top: -5px;
    border-radius: 5px;
    background-color: var(--accent-color);
}

.com-keny-content {
    width: 700px;
    max-width: 90vw;
}

.com-keny-content h3 {
    color: var(--accent-color);
    margin: 0 0 20px 0;
    font-size: 35px;
    font-weight: 600;
    position: relative;
}

.com-keny-content h3::after {
    width: 70px;
    background-color: var(--accent-color);
    height: 5px;
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    border-radius: 0 5px 5px 0;
}

.com-keny-content p {
    font-size: 18px;
}

.com-keny-video-wrap {
    width: 560px;
    height: auto;
    max-width: 80vw;
    position: relative;
}

.com-keny-video-wrap iframe {
	position: relative;
	z-index: 1;
	max-width: 560px;
	width: 100%;
}

.com-keny-video-wrap::before {
    content: "";
    display: block;
    position: absolute;
    top: -10px;
    left: -10px;
    width: 40%;
    height: 40%;
    border-top: double 8px var(--accent-color);
    border-left: double 8px var(--accent-color);
    z-index: 0;
}

.com-keny-video-wrap::after {
    content: "";
    display: block;
    position: absolute;
    top: -10px;
    right: -10px;
    width: 40%;
    height: 40%;
    border-top: double 8px var(--accent-color);
    border-right: double 8px var(--accent-color);
    z-index: 0;
}