

@import url('/css/global.css');

.top {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 16px;

    .blog-thumb {
        border-radius: 16px;
        overflow: hidden;
        width: 100%;
        background-size: cover;
        background-position: center;
        aspect-ratio: 2/1;
        height: auto;
    }

    .blog-content {
        width: 100%;
        line-height: 1.5;
    }

    .title {
        text-align: center;
        font-size: 48px;
        padding-top: 32px;
    }

    .introduction {
        color: var(--gray);
        font-size: 16px;
        text-align: center;
    }
}

.blog-content {
    line-height: 1.5;
}
.list-container {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.button-flex {
    display: flex;
    flex-direction: row;
    gap: 8px;
    justify-content: center;
}

img {
    max-width: 100%;
}

h1 {
    font-weight: var(--b);
    font-size: 32px;
}

.content {
    font-size: 16px;
}

@media (max-width: 1200px) {
    .top {
        padding-top: 0 !important;
    }

    .blog-thumb {
        border-radius: 32px !important;
        border-top-left-radius: 0px !important;
        border-top-right-radius: 0px !important;
        width: 100vw !important;
    }

    .title {
        padding-top: 16px !important;

        .eb {
            font-size: 32px;
        }
    }
}

        .category-list {
            display: flex;
            flex-direction: row;
            gap: 4px;

        }

        .develop-date {
            color: var(--gray);
            font-size: 16px;
        }


.develop-category {
    padding: 4px 8px;
    font-size: 12px;
    border-radius: 20px;
    border: 1px solid black;
}


.video {
	position: relative;
	padding-bottom: 56.25%;
	padding-top: 30px;
	height: 0;
	overflow: hidden;
    border-radius: 16px;
}
 
.video iframe,
.video object,
.video embed {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

img {
    border-radius: 16px;
}

.image-list {
    display: flex;
    flex-direction: row;
    gap: 16px;
    height: 300px;
    overflow-x: auto;
    padding-bottom: 16px;
    overflow-y: hidden;

    img {
        height: 300px;
    }
}