/*
 Theme Name:   KT OOSH
 Theme URI:    https://orioncreative.com.au
 Description:  Custom GeneratePress child theme
 Author:       Jesse Fisher
 Author URI:   https://orioncreative.com.au
 Template:     generatepress
 Version:      0.1
*/

/* General */
.entry-content h2:not(:first-child),
.entry-content h3:not(:first-child),
.entry-content h4:not(:first-child),
.entry-content h5:not(:first-child),
.entry-content h6:not(:first-child) {
  margin-top: 3rem;
}


strong {
    font-weight: 500;
}

.button {
    min-width: 278px;
    padding: 18px 36px;
    border-radius: 30px;
    background-color: var(--brand-3);
    color: var(--base-2);
    text-align: center;
}

/* Header */
@media (max-width: 1200px) {
    .site-header .header-image {
        width: 300px;
    }
}
@media (max-width: 768px) {
    .site-header .header-image {
        width: 240px;
    }
}

/* Announcement */
.announcement {
    background-color: var(--brand-3);
    color: var(--base-2);
}
.announcement-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px;
}
.announcement-grid {
    display: flex;
    gap: 40px;
}
.announcement-category {
    color: var(--brand-2);
}
.announcement .button {
    background-color: var(--brand-2);
}
@media (max-width: 768px) {
    .announcement-grid {
        flex-direction: column;
    }
    .announcement-inner {
        padding: 60px 30px 90px;
    }
    .announcement-content {
        order: 1;
        text-align: center;
    }
    .announcement-image {
        order: 0;
        max-width: 200px;
        margin: 0 auto;
    }
}
@media (min-width: 769px) {
    .announcement-grid {
        align-items: center;
    }
    .announcement-content {
        width: 66.66%;
    }
    .announcement-image {
        width: 33.33%;
    }
}

/* Homepage */
.home h1 {
    font-size: 1.953rem;
}

/* Change sidebar breakpoint  */
@media (max-width: 900px) {
    .site-content {
        display: block;
    }
    .site-content .content-area,
    .is-right-sidebar {
        width: 100%;
    }
}

@media (min-width: 1025px) {
    .one-container.right-sidebar .site-main {
        margin-right: 120px;
    }
}

/* Page Hero */
.page-hero {
    background-color: var(--brand-3);
    color: var(--base-2);
}
.page-hero-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 110px 40px;
}
@media (max-width: 768px) {
    .page-hero-inner {
        padding: 90px 30px;
        text-align: center;
    }
}
.page-hero .parent-title {
    color: var(--brand-2);
}
.page-hero h1 {
    margin-bottom: 0;
    color: var(--base-2);
}
.page-hero .entry-meta {
    color: var(--base-2);
}
.page-hero a {
    color: var(--base-2);
}

/* Sidebar */
@media (max-width: 900px) {
    .sidebar {
        margin-top: 60px;
    }
}

.one-container .site-content {
    padding-top: 90px;
    padding-bottom: 120px;
}

/* Team */
/* 2 column grid */
.team-grid {
    max-width: 600px;
    margin: 90px auto 60px;
}
.team-member {
    margin-bottom: 30px;
}
.team-member-name {
    margin-bottom: 0;
    font-weight: 500;
    font-size: 18px;
    line-height: 1.333;
}
.team-member-position {
    margin-bottom: 0;
    font-size: 18px;
    line-height: 1.333;
}
@media (min-width: 769px) {
    .team-grid {
        max-width: none;
        display: grid;
        grid-template-columns: 1fr 1fr;
        column-gap: 40px;
        row-gap: 40px;
    }
    .team-member {
        margin-bottom: 0;
    }
}
@media (min-width: 1025px) {
    .team-grid {
        grid-template-columns: 1fr 1fr 1fr 1fr;
    }
}

/* WP Gallery */
.gallery {
    margin-left: -5px;
    margin-right: -5px;
}
.gallery-item img {
    width: 100%;
}
@media (max-width: 1024px) {
    .gallery-columns-4 .gallery-item,
    .gallery-columns-5 .gallery-item,
    .gallery-columns-6 .gallery-item,
    .gallery-columns-7 .gallery-item,
    .gallery-columns-8 .gallery-item,
    .gallery-columns-9 .gallery-item {
        max-width: 33.33%;
    }
}
@media (max-width: 768px) {
    .gallery-columns-3 .gallery-item,
    .gallery-columns-4 .gallery-item,
    .gallery-columns-5 .gallery-item,
    .gallery-columns-6 .gallery-item,
    .gallery-columns-7 .gallery-item,
    .gallery-columns-8 .gallery-item,
    .gallery-columns-9 .gallery-item {
        max-width: 50%;
    }
}

/* Footer navigation */
footer.entry-meta {
    margin-top: 3em;
}

/* Footer */
.site-footer {
    padding-top: 110px;
    background-image: url('/wp-content/themes/generatepress_child/images/footer-pattern.png');
    background-repeat: repeat-x;
    background-position: center top;
}
.inside-footer-widgets {
    justify-content: space-between;
    align-items: center;
}
.inside-footer-widgets > div {
    flex: none;

}
#menu-footer {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}
#menu-footer li {
    margin-bottom: 0;
}
#menu-footer a {
    display: block;
    padding: 10px 20px 10px 0;
    text-decoration: none;
    font-size: 18px;
    line-height: 1.333;
}
.site-footer:after {
    content: '';
    position: fixed;
    width: 100%;
    height: 100%;
    background-color: var(--brand-1);
}