/*===========================================
11📌 Notion 갤러리뷰
0. 📁 공통 베이스 (Common Base) - 유지
===========================================*/
/*0. 📁 공통 베이스-------------------------
- 모든 갤러리에 적용되는 화이트 카드 베이스
- PC글자:제목 16, 설명 12 /모바일 글자: 제목 15, 설명 10
- ⚠️ 관계형 링크 정렬⚠️
-------------------------------------------*/
.notion-collection-gallery:has(.notion-collection-card__cover) .notion-collection-card__cover,
.notion-collection-gallery:has(.notion-collection-card__cover) .notion-collection-card__cover > div,
.notion-collection-gallery:has(.notion-collection-card__cover) .notion-collection-card__cover img {
  height: auto !important;
  min-height: unset !important;
  max-height: unset !important;
  object-fit: cover !important;
}
.notion-collection-gallery:has(.notion-collection-card__cover) .notion-collection-card {
  width: 100% !important;
  background: #fff !important;
  border-radius: 15px !important;
  box-shadow: none !important;
  border: 1px solid rgba(0,0,0,0.06) !important;
  overflow: hidden !important;
}


/*-----------------------------------------*/
/* 전역 속성 제어 (Global Properties) */


/* [1] 제목: PC 16px / 모바일 13px */
.notion-collection-card__property:first-child,
.notion-collection-card__property:first-child * {
    font-size: 16px !important;
    color: #37352f !important;
    font-weight: 500 !important;
    line-height: 1.2 !important;
}
/* [2] 하단 모든 속성 통합 제어 (기본 12px / 볼드 포함) */
.notion-collection-card__property:not(:first-child),
.notion-collection-card__property:not(:first-child) *,
.notion-collection-card__property:not(:first-child) span,
.notion-collection-card__property:not(:first-child) div,
.notion-collection-card__property:not(:first-child) :is(b, strong, [style*="700"], [style*="bold"]) {
    font-size: 12px !important; 
    color: #666666;
    text-decoration: none !important;
    line-height: 1.5 !important;
}
/* [3] 관계형(Relation) 링크 버튼 배경 제거 및 좌측 정렬 */
[class*="notion-property__relation"] :is(svg, img, .notion-item-icon, [class*="icon"]),
[class*="notion-property__relation"] a::before {
    display: none !important;
}
[class*="notion-property__relation"] a {
    display: inline-flex !important;
    align-items: center !important;
    background: transparent !important; 
    padding: 0 !important;
    margin: 0 !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    border: none !important;
    text-decoration: none !important;
    transition: color 0.2s ease-in-out !important;
}
/* 📌 관계형 링크 호버 시 설정 */
[class*="notion-property__relation"] a:hover,
[class*="notion-property__relation"] a:hover * {
    color: #D34A45 !important;
    text-decoration: none !important; 
}
/* 텍스트 자체의 미세한 간격 조정 */
[class*="notion-property__relation"] span,
[class*="notion-property__relation"] .notion-link {
    margin-left: 0 !important;
    padding-left: 0 !important;
    color: inherit !important;
}
@media (max-width: 768px) {
    /* [1] 제목14px/속성10px */
    .notion-collection-card__property:first-child,
    .notion-collection-card__property:first-child * {
        font-size: 14px !important;
    }
    .notion-collection-card__property:not(:first-child),
    .notion-collection-card__property:not(:first-child) *,
    .notion-collection-card__property:not(:first-child) span,
    .notion-collection-card__property:not(:first-child) div,
    .notion-collection-card__property:not(:first-child) :is(b, strong, [style*="700"], [style*="bold"]) {
        font-size: 10px !important;
        line-height: 1.4 !important;
    }
    /* 관계형 링크 모바일 정렬 보정 */
    [class*="notion-property__relation"] a {
        font-size: 10px !important;
    }
}
/*=========[#1 갤러리뷰 기본형]==========*/
/*1. 📁 기본 카드형 (Standard Cards)
--------------------------------------------
[G 타입1] 기본 4열 (1:1 비율) 
[NOTE] PC 4열 / 모바일 2열
-------------------------------------------*/
.notion-page-content > .notion-collection-gallery:not(.notion-callout *) {
  display: grid !important;
  grid-template-columns: repeat(4, 1fr) !important; 
  gap: 20px !important;
}
/* 썸네일 비율 설정 */
.notion-collection-gallery:not(.notion-callout *):not([style*="flex"]) :is(.notion-collection-card__cover, img) {
  aspect-ratio: 1 / 1 !important;
}
@media (max-width: 768px) {
  .notion-collection-gallery:not(.notion-callout *):not([style*="flex"]) {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 12px !important;
  }
}

/* ==========================================
📁 갤러리뷰: green 기반
========================================== */
/* [타입 A] 선택자 green / 사각 6,1fr */
/* 갤러리 */
.notion-callout[class*="green"] 
.notion-collection-gallery{
    display:grid !important;
    grid-template-columns:repeat(6,1fr) !important;
    gap:10px !important;
}

/* 카드 */
.notion-callout[class*="green"] 
.notion-collection-card{
    background:transparent !important;
    border:none !important;
    box-shadow:none !important;
}

/* 카드 내부 */
.notion-callout[class*="green"] 
.notion-collection-card__content{
    background:transparent !important;
    padding:8px 4px !important;
}

/* 설명 숨김 */
.notion-callout[class*="green"] 
.notion-collection-card__property:nth-child(4){
    display:none !important;
}

/* 이미지 */
.notion-callout[class*="green"] 
.notion-collection-card__cover,
.notion-callout[class*="green"] 
.notion-collection-card__cover img{
    aspect-ratio:1/1 !important;
    border-radius:10px !important;
    object-fit:cover !important;
}

/* 콜아웃 배경 제거 */
.notion-callout[class*="green"]{
    background:transparent !important;
    border:none !important;
    box-shadow:none !important;
}

.notion-callout[class*="green"]{
    background:transparent !important;
    background-color:transparent !important;
    border:none !important;
    box-shadow:none !important;
    padding-left:0 !important;
    padding-right:0 !important;
}

/* 🚨 [그리드 개선] 콜아웃 내부 1단계 자식 div들의 flex 흐름 및 간격(Gap)을 완전히 분해합니다. */
.notion-callout[class*="green"] > div {
    display: block !important;
    width: 100% !important;
    max-width: 100% !important;
    padding: 0 !important;
    margin: 0 !important;
    gap: 0 !important;
}

/* 🚨 콜아웃 내부의 보이지 않는 아이콘 영역 완전 소멸 */
.notion-callout[class*="green"] .notion-callout__icon {
    display: none !important;
}

/* 🚨 빨간 점선 상자를 허물고 첫 썸네일을 왼쪽 헤더 시작선에 빈틈없이 100% 밀착시킵니다. */
.notion-callout[class*="green"] .notion-callout-content,
.notion-callout[class*="green"] .notion-collection,
.notion-callout[class*="green"] .notion-scroller,
.notion-callout[class*="green"] .notion-collection-gallery,
.notion-callout[class*="green"] .notion-collection-gallery > div {
    width: 100% !important;
    max-width: 100% !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
}


/* 모바일 */
@media (max-width:768px){
.notion-callout[class*="green"] 
.notion-collection-gallery{
    grid-template-columns:repeat(2,1fr) !important;
    gap:12px !important;
}
}



/* ==========================================
📁 갤러리뷰 -Green [TYPE2]
조건: green 콜아웃 + inline code 존재
========================================== */

/* 0. 콜아웃 초기화 */
.notion-callout[class*="green"]:has(code){
    background:transparent !important;
    background-color:transparent !important;
    border:none !important;
    box-shadow:none !important;
    padding-left:0 !important;
    padding-right:0 !important;
}

/* ==========================================
0-1. 인라인코드(type2) 숨김
========================================== */

.notion-callout[class*="green"]:has(code) code{

    display:none !important;
}

/* ==========================================
1. 갤러리 그리드
========================================== */

.notion-callout[class*="green"]:has(code)
.notion-collection-gallery{

    display:grid !important;

    grid-template-columns:repeat(4,1fr) !important;

    gap:16px !important;

    background:transparent !important;
}

/* ==========================================
2. 카드
========================================== */

.notion-callout[class*="green"]:has(code)
.notion-collection-card{

    background:transparent !important;

    border:none !important;

    box-shadow:none !important;
}

/* ==========================================
3. 카드 내부
========================================== */

.notion-callout[class*="green"]:has(code)
.notion-collection-card__content{

    background:transparent !important;

    padding:10px 4px !important;

    display:flex !important;

    flex-direction:column !important;
}

/* ==========================================
4. 썸네일
========================================== */

.notion-callout[class*="green"]:has(code)
.notion-collection-card__cover,

.notion-callout[class*="green"]:has(code)
.notion-collection-card__cover img{

    aspect-ratio:1 / 1 !important;

    border-radius:12px !important;

    object-fit:cover !important;
}

/* ==========================================
5. 아이콘 제거
========================================== */

.notion-callout[class*="green"]:has(code)
.notion-collection-card__property svg{

    display:none !important;
}

/* ==========================================
6. 제목
========================================== */

.notion-callout[class*="green"]:has(code)
.notion-collection-card__property:nth-child(1),

.notion-callout[class*="green"]:has(code)
.notion-collection-card__property:nth-child(1) *{

    font-size:16px !important;

    font-weight:600 !important;

    color:#000 !important;

    line-height:1.4 !important;

    margin-bottom:5px !important;
}

/* ==========================================
7. 설명
========================================== */

.notion-callout[class*="green"]:has(code)
.notion-collection-card__property:nth-child(2),

.notion-callout[class*="green"]:has(code)
.notion-collection-card__property:nth-child(2) *{

    font-size:12px !important;

    color:#666 !important;

    font-weight:400 !important;

    margin-bottom:-5px !important;
}

/* ==========================================
8. NEW 태그
========================================== */

.notion-callout[class*="green"]:has(code)
.notion-collection-card__property:nth-child(3){

    display:flex !important;
}

.notion-callout[class*="green"]:has(code)
.notion-collection-card__property:nth-child(3)
.notion-pill{

    background:transparent !important;

    padding:0 !important;

    color:#D34A45 !important;

    font-size:11px !important;

    font-weight:700 !important;

    line-height:1.2 !important;

    text-transform:uppercase !important;
}

/* ==========================================
9. 모바일
========================================== */

@media (max-width:768px){

.notion-callout[class*="green"]:has(code)
.notion-collection-gallery{

    grid-template-columns:repeat(2,1fr) !important;

    gap:12px !important;
}

.notion-callout[class*="green"]:has(code)
.notion-collection-card__property:nth-child(1),

.notion-callout[class*="green"]:has(code)
.notion-collection-card__property:nth-child(1) *{

    font-size:14px !important;
}

.notion-callout[class*="green"]:has(code)
.notion-collection-card__property:nth-child(2),

.notion-callout[class*="green"]:has(code)
.notion-collection-card__property:nth-child(2) *{

    font-size:10px !important;
}

.notion-callout[class*="green"]:has(code)
.notion-collection-card__property:nth-child(3)
.notion-pill{

    font-size:9px !important;
}

}

/* ==========================================
📁 갤러리뷰 type3 : green 콜아웃 + 불렛 트리거
[노트] 원형 도시 버튼 / 가로 스크롤 슬라이드
========================================== */

/* 콜아웃 초기화 */
.notion-callout[class*="green"]:has(ul){
    background:transparent !important;
    background-color:transparent !important;
    border:none !important;
    box-shadow:none !important;
    padding:0 !important;
}
/* 불렛 트리거 숨김 */
.notion-callout[class*="green"]:has(ul) ul{
    display:none !important;
}
/* 콜아웃 내부 h1 숨김 */
.notion-callout[class*="green"]:has(ul) h3{
    display:none !important;
}
/* 갤러리 */
.notion-callout[class*="green"]:has(ul)
.notion-collection-gallery{
    display:flex !important;
    flex-wrap:nowrap !important;
    overflow-x:auto !important;
    gap:20px !important;
    scrollbar-width:none !important;
    scroll-snap-type:x mandatory !important;
}
.notion-callout[class*="green"]:has(ul)
.notion-collection-gallery::-webkit-scrollbar{
    display:none;
}
/* 카드 */
.notion-callout[class*="green"]:has(ul)
.notion-collection-card{
    flex:0 0 calc((100% - 175px) / 8) !important;
    min-width:calc((100% - 175px) / 8) !important;
    border:none !important;
    box-shadow:none !important;
    background:transparent !important;
    scroll-snap-align:start !important;
}

/* 카드 내부 */
.notion-callout[class*="green"]:has(ul)
.notion-collection-card__content{
    background:transparent !important;
    padding:8px 4px !important;
}
/* 이미지 */
.notion-callout[class*="green"]:has(ul)
.notion-collection-card__cover,
.notion-callout[class*="green"]:has(ul)
.notion-collection-card__cover > div,
.notion-callout[class*="green"]:has(ul)
.notion-collection-card__cover img{
    height:auto !important;
    min-height:unset !important;
    aspect-ratio:1/1 !important;
    object-fit:cover !important;
    border-radius:100vw !important;
}
/* 제목 */
.notion-callout[class*="green"]:has(ul)
.notion-collection-card__property:first-child,
.notion-callout[class*="green"]:has(ul)
.notion-collection-card__property:first-child *{
    padding-top:0 !important;
    margin-top:-3px !important;
    font-size:14px !important;
    font-weight:600 !important;
    text-align:center !important;
    color:#000 !important;
    margin-bottom:6px !important;
    display:block !important;
    -webkit-line-clamp:unset !important;
    max-height:none !important;
}
/* 이미지 없는 카드 */
.notion-callout[class*="green"]:has(ul)
.notion-collection-card:not(:has(.notion-collection-card__cover))
.notion-collection-card__cover{
    display:none !important;
}
.notion-callout[class*="green"]:has(ul)
.notion-collection-card:not(:has(.notion-collection-card__cover)){
    position:relative !important;
    aspect-ratio:1/1 !important;
    display:flex !important;
    align-items:center !important;
    justify-content:center !important;
}
.notion-callout[class*="green"]:has(ul)
.notion-collection-card:not(:has(.notion-collection-card__cover))
.notion-collection-card__content{
    position:absolute !important;
    top:50% !important;
    left:50% !important;
    transform:translate(-50%,-50%) !important;
    width:100% !important;
    padding:0 !important;
    margin:0 !important;
}
.notion-callout[class*="green"]:has(ul)
.notion-collection-card:not(:has(.notion-collection-card__cover))
.notion-item-title{
    margin:0 !important;
    padding:0 !important;
    text-align:center !important;
    display:block !important;
    width:100% !important;
}

/* 모바일 */
@media (max-width:768px){
.notion-callout[class*="green"]:has(ul)
.notion-collection-gallery{
    gap:12px !important; /* ← 모바일 썸네일 간격 */
}
.notion-callout[class*="green"]:has(ul)
.notion-collection-card{
    flex:0 0 calc((100% - 36px) / 4) !important;
    min-width:calc((100% - 36px) / 4) !important;
}
.notion-callout[class*="green"]:has(ul)
.notion-collection-card__property:first-child *{
    font-size:14px !important;
}
}


/*-------------------------------------------
📁 히어로 배너 type4 : green 콜아웃 + toggle trigger
세로형 Full Width Hero
-------------------------------------------*/

/* [1] 전역 레이아웃 */

body{
    overflow-x:hidden !important;
}

.super-content,
.notion-page-content,
.notion-column{
    overflow:visible !important;
}

/* [2] 히어로 배너 본체 */

.notion-callout[class*="green"]:has(.notion-toggle){
    background:transparent !important;
    background-color:transparent !important;
    border:none !important;
    box-shadow:none !important;
    padding:20px 0 !important;
    margin-top:-170px !important;
    width:100vw !important;
    max-width:none !important;
    position:relative !important;
    left:50% !important;
    transform:translateX(-50%) !important;
    display:flex !important;
    flex-direction:column !important;
    overflow:visible !important;
}

/* [3] 토글 트리거 숨김 */

.notion-callout[class*="green"]:has(.notion-toggle)
.notion-toggle{
    display:none !important;
}

/* [4] SEO 텍스트 및 제목 숨김 */

.notion-callout[class*="green"]:has(.notion-toggle)
.notion-callout__icon,

.notion-callout[class*="green"]:has(.notion-toggle)
h1,

.notion-callout[class*="green"]:has(.notion-toggle)
h3,

.notion-callout[class*="green"]:has(.notion-toggle)
.notion-text,

.notion-callout[class*="green"]:has(.notion-toggle)
> .notion-callout__content > div:not([class*="collection"]){
    display:none !important;
}

/* [5] 갤러리 */

.notion-callout[class*="green"]:has(.notion-toggle)
.notion-collection-gallery{
    display:flex !important;
    width:100vw !important;
    padding-left:0 !important;
    padding-right:0 !important;
    padding-top:0 !important;
    padding-bottom:20px !important;
    gap:10px !important;
    overflow-x:auto !important;
    scrollbar-width:none !important;
}

.notion-callout[class*="green"]:has(.notion-toggle)
.notion-collection-gallery::-webkit-scrollbar{
    display:none !important;
}

/* [6] 카드 */

.notion-callout[class*="green"]:has(.notion-toggle)
.notion-collection-card{
    flex:0 0 550px !important;
    width:550px !important;
    min-height:1000px !important;
    position:relative !important;
    margin:0 !important;
    background:transparent !important;
    border:none !important;
}

/* 시작점 */

.notion-callout[class*="green"]:has(.notion-toggle)
.notion-collection-card:first-child{
    margin-left:calc((66vw - 1200px) / 2 + 20px) !important;
}

/* 마지막 여백 */

.notion-callout[class*="green"]:has(.notion-toggle)
.notion-collection-card:last-child{
    margin-right:30px !important;
}

/* [7] 썸네일 */

.notion-callout[class*="green"]:has(.notion-toggle)
.notion-collection-card__cover,

.notion-callout[class*="green"]:has(.notion-toggle)
.notion-collection-card__cover img{
    position:absolute !important;
    top:0 !important;
    left:0 !important;
    width:100% !important;
    height:100% !important;
    z-index:1 !important;
    border-radius:18px !important;
    object-fit:cover !important;
    transition:transform .6s cubic-bezier(.165,.84,.44,1) !important;
    will-change:transform;
}

/* 호버 확대 */

.notion-callout[class*="green"]:has(.notion-toggle)
.notion-collection-card:hover
.notion-collection-card__cover,

.notion-callout[class*="green"]:has(.notion-toggle)
.notion-collection-card:hover
.notion-collection-card__cover img{
    transform:scale(1.08) !important;
}

/* [8] 콘텐츠 */

.notion-callout[class*="green"]:has(.notion-toggle)
.notion-collection-card__content{
    position:absolute !important;
    bottom:0 !important;
    left:0 !important;
    width:100% !important;
    height:75% !important;
    padding:0 30px 45px 30px !important;
    z-index:3 !important;
    background:linear-gradient(
        to top,
        rgba(0,0,0,.95) 0%,
        rgba(0,0,0,.4) 30%,
        rgba(0,0,0,0) 100%
    ) !important;
    display:flex !important;
    flex-direction:column !important;
    justify-content:flex-end !important;
    pointer-events:none;
}

/* [9] Slide for more */

.notion-callout[class*="green"]:has(.notion-toggle)
+ .notion-text{
    display:block !important;
    background:transparent !important;
    margin-top:-35px !important;
    width:100vw !important;
    max-width:none !important;
    position:relative !important;
    left:50% !important;
    margin-left:-48vw !important;
    z-index:100 !important;
}

.notion-callout[class*="green"]:has(.notion-toggle)
+ .notion-text > div{
    color:rgba(255,255,255,.4) !important;
    font-size:11px !important;
    font-weight:500 !important;
    letter-spacing:.15em !important;
    text-transform:uppercase !important;
    padding-left:5px !important;
}

/* [10] 속성 스타일 */

.notion-callout[class*="green"]:has(.notion-toggle)
.notion-collection-card__property:nth-child(1){
    display:flex !important;
    align-items:center !important;
    margin-bottom:8px !important;
}

.notion-callout[class*="green"]:has(.notion-toggle)
.notion-collection-card__property:nth-child(1)
.notion-pill{
    font-size:11px !important;
    font-weight:700 !important;
    padding:2px 8px !important;
    border-radius:4px !important;
    text-transform:uppercase !important;
    line-height:1.2 !important;
}

.notion-callout[class*="green"]:has(.notion-toggle)
.notion-collection-card__property:nth-child(2),

.notion-callout[class*="green"]:has(.notion-toggle)
.notion-collection-card__property:nth-child(2) *{
    color:#fff !important;
    font-size:24px !important;
    font-weight:700 !important;
    line-height:1.4 !important;
    margin-bottom:15px !important;
    text-shadow:0 2px 10px rgba(0,0,0,.5) !important;
}

.notion-callout[class*="green"]:has(.notion-toggle)
.notion-collection-card__property:nth-child(3),

.notion-callout[class*="green"]:has(.notion-toggle)
.notion-collection-card__property:nth-child(3) *{
    color:rgba(255,255,255,.9) !important;
    font-size:12px !important;
    font-weight:400 !important;
    line-height:1.5 !important;
    margin-top:6px !important;
    text-shadow:0 1px 5px rgba(0,0,0,.5) !important;
}

/* 아이콘 숨김 */

.notion-callout[class*="green"]:has(.notion-toggle)
.notion-collection-card__property svg{
    display:none !important;
}

/* 모바일 */

@media (max-width:768px){

.notion-callout[class*="green"]:has(.notion-toggle){
    width:100vw !important;
    max-width:none !important;
    position:relative !important;
    left:50% !important;
    transform:translateX(-50%) !important;
    margin-top:-120px !important;
    overflow:visible !important;
    padding-bottom:3px !important;
}

.notion-callout[class*="green"]:has(.notion-toggle)
.notion-collection-gallery{
    display:flex !important;
    flex-direction:row !important;
    overflow-x:auto !important;
    width:100vw !important;
    padding:0 !important;
    gap:10px !important;
}

.notion-callout[class*="green"]:has(.notion-toggle)
.notion-collection-card,

.notion-callout[class*="green"]:has(.notion-toggle)
.notion-collection-card > a{
    min-width:85vw !important;
    max-width:85vw !important;
    width:85vw !important;
    flex:0 0 85vw !important;
    min-height:500px !important;
    height:auto !important;
    background:transparent !important;
    border:none !important;
    box-shadow:none !important;
}

.notion-callout[class*="green"]:has(.notion-toggle)
.notion-collection-card:first-child{
    margin-left:0 !important;
}

.notion-callout[class*="green"]:has(.notion-toggle)
+ .notion-text{
    padding-left:27px !important;
    margin-top:0 !important;
}

.notion-callout[class*="green"]:has(.notion-toggle)
.notion-collection-card__content{
    padding:20px !important;
}

.notion-callout[class*="green"]:has(.notion-toggle)
.notion-collection-card__property:nth-child(1)
.notion-pill{
    font-size:10px !important;
    padding:1px 6px !important;
}

.notion-callout[class*="green"]:has(.notion-toggle)
.notion-collection-card__property:nth-child(2),

.notion-callout[class*="green"]:has(.notion-toggle)
.notion-collection-card__property:nth-child(2) *{
    font-size:20px !important;
    line-height:1.3 !important;
}

.notion-callout[class*="green"]:has(.notion-toggle)
.notion-collection-card__property:nth-child(3),

.notion-callout[class*="green"]:has(.notion-toggle)
.notion-collection-card__property:nth-child(3) *{
    font-size:11px !important;
    line-height:1.4 !important;
    display:-webkit-box !important;
    -webkit-line-clamp:3;
    -webkit-box-orient:vertical;
    overflow:hidden;
}

}


/* ==========================================
📁 갤러리뷰 type5 : green 콜아웃 + 인용 트리거
가로형 오버랩형 - 온라인전시
========================================== */
/* 콜아웃 초기화 */
.notion-callout[class*="green"]:has(blockquote){
    background:transparent !important;
    background-color:transparent !important;
    border:none !important;
    box-shadow:none !important;
    padding:0 !important;
}
/* quote 트리거 숨김 */
.notion-callout[class*="green"]:has(blockquote) blockquote{
    display:none !important;
}
/* 내부 h1,h2,h3 숨김 */
.notion-callout[class*="green"]:has(blockquote) h1,
.notion-callout[class*="green"]:has(blockquote) h2,
.notion-callout[class*="green"]:has(blockquote) h3{
    display:none !important;
}
/* 그리드 */
.notion-callout[class*="green"]:has(blockquote)
.notion-collection-gallery{
    display:grid !important;
    grid-template-columns:repeat(2,1fr) !important;
    gap:20px !important;
}

/* 카드 */
.notion-callout[class*="green"]:has(blockquote)
.notion-collection-card{
    position:relative !important;
    background:transparent !important;
    border:none !important;
    overflow:hidden !important;
    border-radius:15px !important;
    aspect-ratio:5/2 !important;
    box-shadow:none !important;
}

/* 이미지 */
.notion-callout[class*="green"]:has(blockquote)
.notion-collection-card__cover,
.notion-callout[class*="green"]:has(blockquote)
.notion-collection-card__cover > div,
.notion-callout[class*="green"]:has(blockquote)
.notion-collection-card__cover img{
    height:100% !important;
    width:100% !important;
    max-height:100% !important;
    position:absolute !important;
    top:0 !important;
    left:0 !important;
    object-fit:cover !important;
    transition:transform .4s ease-in-out !important;
    will-change:transform;
}

/* 호버 확대 */
.notion-callout[class*="green"]:has(blockquote)
.notion-collection-card:hover
.notion-collection-card__cover,
.notion-callout[class*="green"]:has(blockquote)
.notion-collection-card:hover
.notion-collection-card__cover img{
    transform:scale(1.1) !important;
}

/* 텍스트 레이어 */
.notion-callout[class*="green"]:has(blockquote)
.notion-collection-card__content{
    position:absolute !important;
    bottom:0 !important;
    left:0 !important;
    width:100% !important;
    height:60% !important;
    background:linear-gradient(to top,rgba(0,0,0,.6) 0%,rgba(0,0,0,0) 100%) !important;
    display:flex !important;
    flex-direction:column !important;
    justify-content:flex-end !important;
    align-items:center !important;
    text-align:center !important;
    padding:0 15px 15px 15px !important;
    z-index:10 !important;
    pointer-events:none !important;
}
/* 제목 */
.notion-callout[class*="green"]:has(blockquote)
.notion-collection-card__property:first-child,
.notion-callout[class*="green"]:has(blockquote)
.notion-collection-card__property:first-child *{
    color:#fff !important;
    font-size:16px !important;
    font-weight:600 !important;
    line-height:1.4 !important;
    margin-bottom:4px !important;
    text-shadow:0 2px 10px rgba(0,0,0,.5) !important;
    display:block !important;
    text-align:center !important;
}
/* 설명 */
.notion-callout[class*="green"]:has(blockquote)
.notion-collection-card__property:not(:first-child),
.notion-callout[class*="green"]:has(blockquote)
.notion-collection-card__property:not(:first-child) *{
    color:rgba(255,255,255,.9) !important;
    font-size:12px !important;
    font-weight:400 !important;
    line-height:1.5 !important;
    text-shadow:0 1px 5px rgba(0,0,0,.5) !important;
    text-align:center !important;
}
/* 모바일 */
@media (max-width:768px){
.notion-callout[class*="green"]:has(blockquote)
.notion-collection-gallery{
    grid-template-columns:1fr !important;
    gap:16px !important;
}
.notion-callout[class*="green"]:has(blockquote)
.notion-collection-card{
    aspect-ratio:16/9 !important;
}
.notion-callout[class*="green"]:has(blockquote)
.notion-collection-card__property:first-child *{
    font-size:14px !important;
}
.notion-callout[class*="green"]:has(blockquote)
.notion-collection-card__content
.notion-collection-card__property:not(:first-child) *{
    font-size:11px !important;
}
}
