/* Apply grid layout to posts on home page in GeneratePress theme (free version). Grid items will automatically fill up rows and create new ones as needed. Grid columns will have a minimum width of 300px and a maximum width of 1fr (fraction of the available space). Gap between grid items is set to 1.5em. */
/*
.home #main {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 1.5em;
}

.archive #main {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.0em;
	
}

.content-area {
	width:1000px;
}

.content-area .site-main {
	width:1000px;
}

.inside-article {
  display: flex;
  flex-direction: column;
	width:200px;
}

.inside-article .entry-header {
  order: 2;
}

.inside-article .entry-header .entry-title {
	font-size : 20px;
	width:200px;
}

.inside-article .entry-meta {
	display:none;
}

.inside-article .post-image {
  order: 1;
	width:200px;
}

.inside-article .entry-summary {
  order: 3;
	display: none;
}


.inside-article .entry-summary .entry-meta {
	display:none;
}*/


    figure[data-ke-type='opengraph'],
#tt-body-page figure[data-ke-type='opengraph'] {
    margin-top: 30px;
    margin-bottom: 30px;
}

figure[data-ke-type='opengraph'] a,
#tt-body-page figure[data-ke-type='opengraph'] a {
    position: relative;
    box-sizing: border-box;
    display: block;
    height: 200px;
    border: 1px solid #d9d9d9;
    text-decoration: none;
    color: #000;
    z-index: 1;
}

figure[data-ke-type='opengraph'] a:hover,
#tt-body-page figure[data-ke-type='opengraph'] a:hover {
    opacity: 1;
}


figure[data-ke-type='opengraph'] div {
    position: relative;
}

figure[data-ke-type=opengraph] a::before,
#tt-body-page figure[data-ke-type=opengraph] a::before,
#tt-body-page .blogview_content figure[data-ke-type=opengraph] a::before {
    background: none;
}

figure[data-ke-type=opengraph] a div.og-image::before,
#tt-body-page figure[data-ke-type=opengraph] a div.og-image::before,
#tt-body-page .blogview_content figure[data-ke-type=opengraph] div.og-image::before {
    font-size: 0;
    line-height: 0;
    text-indent: -9999px;
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background-size: 100% 100%;
    background-position: 0 0;
    content: '';
    background-repeat: no-repeat;
    z-index: -1;
}

figure[data-ke-type='opengraph'] div.og-image {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 200px;
    border-right: 1px solid #d9d9d9;
    background-size: cover;
    background-position: center;
}

figure[data-ke-type='opengraph'] div.og-text {
    position: absolute;
    left: 201px;
    right: 0;
    top: 0;
    bottom: 0;
    box-sizing: border-box;
    padding: 33px 46px 0 39px;
}

figure[data-ke-type='opengraph'] div.og-text p.og-title,
#tt-body-page figure[data-ke-type='opengraph'] div.og-text p.og-title {
    color: #000000;
    font-size: 22px;
    line-height: 28px;
    max-width: 467px;
    text-overflow: ellipsis;
    white-space: nowrap;
    margin: 0 0 10px 0 !important;
    overflow: hidden;
    font-family: Pretendard-Regular, sans-serif;
}

figure[data-ke-type='opengraph'] div.og-text p.og-desc,
#tt-body-page figure[data-ke-type='opengraph'] div.og-text p.og-desc {
    margin: 0px;
    text-overflow: ellipsis;
    overflow: hidden;
    font-family: Pretendard-Regular, sans-serif;
    font-size: 14px;
    font-weight: 300;
    font-style: normal;
    font-stretch: normal;
    line-height: normal;
    letter-spacing: normal;
    color: #909090;
    max-height: 42px;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    display: -webkit-box;
}

figure[data-ke-type='opengraph'] div.og-text p.og-host,
#tt-body-page figure[data-ke-type='opengraph'] div.og-text p.og-host {
    position: absolute;
    bottom: 24px;
    font-family: Pretendard-Regular, sans-serif;
    font-size: 14px;
    color: #909090;
    margin: 0;
}

@media (max-width: 600px) {
    figure[data-ke-type='opengraph'] a,
    #tt-body-page figure[data-ke-type='opengraph'] a {
        height: 90px;
    }

    figure[data-ke-type='opengraph'] a::before,
    #tt-body-page figure[data-ke-type='opengraph'] a::before {
        left: 44px;
    }

    figure[data-ke-type='opengraph'] div.og-image {
        width: 88px;
    }

    figure[data-ke-type='opengraph'] div.og-text,
    #tt-body-page figure[data-ke-type='opengraph'] div.og-text {
        left: 89px;
        padding: 13px 12px 0 20px;
    }

    figure[data-ke-type='opengraph'] div.og-text p.og-title,
    #tt-body-page figure[data-ke-type='opengraph'] div.og-text p.og-title {
        font-size: 16px;
        -webkit-line-clamp: 1;
    }

    figure[data-ke-type='opengraph'] div.og-text p.og-desc,
    #tt-body-page figure[data-ke-type='opengraph'] div.og-text p.og-desc {
        display: none;
    }

    figure[data-ke-type='opengraph'] div.og-text p.og-host,
    #tt-body-page figure[data-ke-type='opengraph'] div.og-text p.og-host {
        bottom: 10px;
    }
}
