.custom-header-slider {
    width: 100%;
    height: 100vh;
}

.slide-container,
.slide,
.slide-image-container {
    width: 100%;
    height: 100%;
}

.slide-image-container {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.slide-contents {
    padding: 32px 48px;
    background-color: rgba(0, 0, 0, 0.86);
}

.slide-link {
    display: inline-flex;
    text-decoration: none;
    background: hsl(134, 50%, 46%);
    color: #fff !important;
    padding: 8px 12px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: .08em !important;
    margin-top: 24px;
}

.slide-title,
.slide-description {
    color: #fff !important;
    margin-bottom: 0;
}

.slide-title {
    font-size: 24px;
    letter-spacing: .04em !important;
    font-weight: 600 !important;
    margin-bottom: 12px;
}

.slick-track,
.slick-list {
    height: 100%;
}

.slick-next,
.slick-prev {
    z-index: 2;
    background: transparent !important;
    width: 32px;
    height: 32px;
}

.slick-next {
    right: 24px;
}

.slick-prev {
    left: 24px;
}

.slick-prev:before,
.slick-next:before {
    color: black;
    font-size: 24px;
}

.slick-dots {
    bottom: 20px;
}

.slick-dots button:hover,
.slick-dots button:focus {
    background: transparent !important;
}

.home-section {
    padding: 24px 0;
}

.col-3 {
    display: flex;
    flex-wrap: wrap;
    row-gap: 24px;
    column-gap: 24px;
}

.card {
    width: calc((100% - 48px) / 3);
    background: #fff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.16);
    border-radius: 4px;
}

.card .card-link {
    display: block;
    width: 100%;
    height: 100%;
}

.card .card-header {
    height: 256px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    border-radius: 4px 4px 0 0;
}

.card .card-contents {
    padding: 12px;
}

.card-contents .post-title {
    font-size: 16px;
}

.card-contents .post-summary {
    margin-bottom: 0;
}

.menu {
    border: 4px solid hsl(134, 50%, 40%);
}

.menu .card-header {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 124px;
}

.menu-icon {
    font-size: 64px;
    color: hsl(134, 50%, 40%);
}

.menu .card-contents {
    text-align: center;
}

.card-contents .menu-name {
    font-size: 18px;
}

@media screen and (max-width: 480px) {
    .col-3 {
        flex-direction: column;
    }

    .card {
        width: 100%;
    }
}