@font-face {
	font-family: 'Silently';
	src: url('../fonts/Silently.otf') format('otf'), 
	url('../fonts/Silently.ttf') format('truetype');
	font-weight: 400;
	font-style: normal;
}

main {
    margin-top: 48px;
}

.story-page .page_title {
    margin-bottom: 64px;
    font-weight: 500;
    font-size: 36px;
    line-height: 45px;
    color: #C49A6C;
    text-align: center;
}

.story-page .page_subtitle {
    margin-bottom: 32px;
    text-align: center;
}

.story-page .cards {
    display: grid;
    gap: 32px;
    margin-bottom: 64px;
    grid-template-columns: repeat(3, 1fr);
}

.story-page .cards .card {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.story-page .cards .card img {
    border-radius: 100%;
    width: 300px;
    max-height: 300px;
    object-fit: cover;
    margin-bottom: 48px;
}

.story-page .cards .card .name {
    font-family: 'Silently';
    font-size: 56px;
    margin-bottom: 32px;
    color: #C49A6C;
    text-align: center;
}

.story-page .cards .card .text {
    margin: 0 32px;
    text-align: center;
    font-weight: 300;
}

.story-page .our_store {
    display: flex;
    gap: 32px;
    margin-bottom: 62px;
}

.story-page .our_store .text-block {
    width: 60%;
}

.story-page .our_store .text-block .title {
    margin-bottom: 32px;
    font-weight: 500;
    font-size: 24px;
    color: #C49A6C;
}

.story-page .our_store .text-block .text {
    font-weight: 300;

}

.story-page .our_store .image-block {
    width: 40%;
    display: flex;
    gap: 16px;
}

.story-page .our_store .image-block img {
    width: calc(50% - 8px);
    object-fit: cover;
}

.story-page .story-footer .suptext {
    text-align: center;
    margin-bottom: 16px;
}

.story-page .story-footer .desc {
    margin-bottom: 24px;
}

.story-page .story-footer .desc .name {
    margin-bottom: 16px;
    font-weight: 500;
    font-size: 18px;
    color: #C49A6C;
    text-align: center;
}

.story-page .story-footer .desc .text em {
    font-style: italic;
}

@media(max-width: 769px) {
    .story-page .our_store {
        flex-direction: column;
    }

    .story-page .our_store .text-block,
    .story-page .our_store .image-block
    {
        width: 100%;
    }
    .story-page .cards .card .text {
        margin: 0;
    }
}

@media(max-width: 480px) {
    .story-page .cards {
        grid-template-columns: repeat(1, 1fr);
        gap: 16px;
    }
    .story-page .page_title {
        margin-bottom: 16px;
    }
    .story-page .page_subtitle {
        margin-bottom: 16px;
        font-size: 14px;
    }
    .story-page .cards .card img {
        width: 150px;
        max-height: 150px;
        margin-bottom: 16px;
    }
    .story-page .cards .card .name {
        margin-bottom: 16px;
    }
    .story-page .our_store .text-block .title {
        margin-bottom: 16px;
    }
    .story-page .our_store .text-block .text {
        font-size: 14px;
    }
    .story-page .story-footer .desc .text {
        font-size: 14px;
    }
}
