/* 個別ページ */
.media-featured-image {
    margin-bottom: 20px;
}

.media-featured-image img {
    width: 100%;
    height: auto;
    display: block;
}
.post-type-past_media_coverage .container{
	max-width:1000px;
	width:95%;
}
.post-type-past_media_coverage .site-body{
	background:#fff;
}
.post-type-past_media_coverage .entry-meta,.post-type-past_media_coverage .sub-section{
	display:none;
}
.post-type-past_media_coverage .main-section--pos--right {
	float: none
}
.post-type-past_media_coverage .main-section--col--two {
	width:100%
}
.post-type-past_media_coverage .page-header-title{
	text-align:left;
}
.post-type-past_media_coverage .entry-content {
padding:50px 0;
}

/* カード */
.media-card-list {
	padding:60px 0;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
}

.media-card {
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
    background: #fff;
    transition: box-shadow 0.3s;
}

.media-card a {
    color: inherit;
    text-decoration: none;
    display: block;
    height: 100%;
}

.media-card-thumb{
	height:160px;
}
.media-card-thumb img {
    height: auto;
    display: block;
	
}

.media-card-body {
	position:relative;
	padding:  15px;
	height:calc(100% - 160px);
}

.media-card-title {
	color:#333!important;
	font-size: 1.1em;
	margin: 0 0 20px;
	padding-top:0px;
	text-align:left;
	text-align:justify;
	border-bottom:0px transparent solid!important;
}
.media-card-title::before {
	opacity:0;
}

.media-card-date {
	position:absolute;
	line-height:2rem;
	font-size: 0.9em;
	bottom:5px;
	color: #777;
}

.media-card:hover {
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

