/*
 Theme Name:   Edubin Child
 Theme URI:    https://themeforest.net/item/edubin-education-lms-wordpress-theme/24037792
 Description:  Education LMS WordPress Theme Edubin Child Theme
 Author:       Pixelcurve
 Author URI:   https://themeforest.net/user/pixelcurve
 Template:     edubin
 Version:      1.0.0
 License: GNU General Public License v2 or later
 License URI: LICENSE
 Tags:          custom-header, custom-logo, blog, theme-options
 Text Domain:  edubin-child

* If you are not familiar with Child Themes, you can read about it here:
* http://codex.wordpress.org/Child_Themes
*/

/* 강의 목록(/courses/) 카드 썸네일을 대표이미지 원본 비율(1200x630)에 맞춥니다.
   부모 Edubin 테마의 height: 200px + object-fit: cover 규칙 때문에 좌우가 잘리는 문제를 보정합니다. */
body.post-type-archive-courses .edubin-course.layout__3 .course__media {
	aspect-ratio: 1200 / 630;
	overflow: hidden;
}

body.post-type-archive-courses .edubin-course.layout__3 .course-thumb {
	display: block;
	height: 100%;
}

body.post-type-archive-courses .edubin-course.layout__3 .course__media img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}
