
.nm-main {
    overflow: hidden;
    background: var(--bg);
    color: var(--dark);
    font-size: 17px;
}

.nm-main a {
    text-decoration: none;
}
.nm-hero{
    position:relative;
    min-height:100svh;
    padding:80px 0 150px;
    display:flex;
    align-items:center;
    background:
        radial-gradient(circle at 50% 0%,rgba(255,255,255,.95),transparent 32%),
        radial-gradient(circle at 82% 18%,rgba(37,99,235,.12),transparent 30%),
        linear-gradient(145deg,#f7faff 0%,#edf3f9 52%,#e8f0f8 78%,var(--bg) 100%);
}

.nm-hero:before,
.nm-hero:after {
    position:absolute;
    content:"";
    pointer-events:none;
}

.nm-hero:before {
    top:-160px;
    right:20%;
    width:380px;
    height:380px;
    border-radius:50%;
    filter:blur(1px);
    background:rgba(255,255,255,.48);
    box-shadow:28px 28px 70px rgba(133,150,173,.13);
}

.nm-hero:after {
    left:0;
    right:0;
    bottom:-1px;
    height:190px;
    background:linear-gradient(180deg,rgba(232,240,248,0) 0%,var(--bg) 100%);
    z-index:0;
}
.nm-hero-grid{
    position:relative;
    z-index:1;
    display:flex;
    align-items:center;
    justify-content:center;
}
.nm-hero-copy{
    max-width:1040px;
    margin:0 auto;
    text-align:center;
}
.nm-kicker {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 26px;
    color: var(--blue);
    font-size: 18px;
    font-weight: 900;
    letter-spacing: .12em;
}
.nm-kicker svg {
    width: 18px;
    height: 18px;
}
.nm-hero-copy h1 {
    margin: 0;
    color: var(--navy);
    font-size: clamp(52px, 5.5vw, 88px);
    font-weight: 950;
    line-height: 1.04;
    letter-spacing: -.065em;
}
.nm-hero-copy h1 em {
    color: var(--blue);
    font-style: normal;
}
.nm-hero-copy > p {
    max-width: 650px;
    margin: 30px auto 0;
    color: #5c6b80;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.75;
    letter-spacing: -.025em;
}
.nm-hero-actions {
    display: flex;
    align-items: center;
    justify-content: center; /* 좌측 정렬에서 가운데 정렬로 변경 */
    gap: 14px;
    margin-top: 38px;
    text-align: center;      /* 내부 인라인 요소 정렬 보정 */
}

.hero-scroll {
    position: absolute;
    left: 50%;
    bottom: 28px;
    z-index: 5;
    width: 42px;
    height: 64px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding-top: 12px;
    color: #bbc;
    transform: translateX(-50%);
    animation: heroScrollFloat 1.8s ease-in-out infinite;
}

.hero-scroll svg {
    width: 40px;
    height: 40px;
    stroke-width: 1;
}

.hero-scroll {
    transition: opacity .25s ease, visibility .25s ease;
}

.hero-scroll.is-hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

@keyframes heroScrollFloat {
    0%, 100% {
        transform: translate(-50%, 0);
    }
    50% {
        transform: translate(-50%, 8px);
    }
}

@keyframes heroScrollDot {
    0% {
        opacity: 0;
        transform: translate(-50%, -4px);
    }
    35% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        transform: translate(-50%, 10px);
    }
}


.nm-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    min-height: 58px;
    padding: 0 27px;
    border: 0;
    border-radius: 18px;
    font-size: 15px;
    font-weight: 900;
    transition: transform .2s, box-shadow .2s;
}
.nm-btn svg {
    width: 18px;
    height: 18px;
}
.nm-btn:hover {
    transform: translateY(-2px);
}
.nm-btn-primary {
    background: linear-gradient(145deg, #3979ff, #245fe6);
    color: #fff;
    box-shadow: 10px 12px 24px rgba(45,108,246,.25);
}
.nm-btn-soft {
    border: 1px solid rgba(148,163,184,.22);
    background: rgba(255,255,255,.68);
    color: #344054;
    box-shadow: 0 8px 20px rgba(74,92,118,.1);
}
.nm-trust-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center; /* 좌측 정렬에서 가운데 정렬로 변경 */
    gap: 20px;
    margin-top: 32px;
    color: #718096;
    font-size: 13px;
    font-weight: 850;
}
.nm-trust-row span {
    display: flex;
    align-items: center;
    gap: 7px;
}
.nm-trust-row svg {
    width: 16px;
    height: 16px;
    color: var(--blue);
}
.nm-console-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 23px;
    padding: 2px 4px;
}
.nm-console-head span {
    display: block;
    color: #8a98aa;
    font-size: 15px;
    font-weight: 900;
    letter-spacing: .14em;
}
.nm-console-head h2 {
    margin: 7px 0 0;
    color: #101828;
    font-size: clamp(42px, 4.2vw, 68px);
    font-weight: 950;
    line-height: 1.08;
    letter-spacing: -.055em;
}
.nm-live {
    display: flex;
    align-items: center;
    gap: 7px;
    padding: 10px 14px;
    border-radius: 999px;
    background: #e7f8ef;
    color: #168653;
    font-size: 18px;
    font-weight: 900;
    box-shadow: inset 2px 2px 4px rgba(43,118,81,.08);
}
.nm-live i {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #1dbf73;
    box-shadow: 0 0 0 6px rgba(29,191,115,.13);
}
.nm-service-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}
.nm-service-card {
    display: grid;
    grid-template-columns: 54px 1fr 18px;
    gap: 18px;
    align-items: center;
    min-height: 116px;
    padding: 24px 22px;
    border: 1px solid rgba(148,163,184,.2);
    border-radius: 22px;
    background: rgba(255,255,255,.72);
    color: #344054;
    box-shadow: 0 8px 22px rgba(74,92,118,.1);
    transition: transform .2s, box-shadow .2s, border-color .2s;
}
.nm-service-card:hover {
    transform: translateY(-2px);
    border-color: rgba(45,108,246,.25);
    box-shadow: 0 12px 28px rgba(74,92,118,.14);
}
.nm-service-card > svg {
    width: 18px;
    color: #98a2b3;
}
.nm-service-card strong,
.nm-service-card small {
    display: block;
}
.nm-service-card strong {
    color: #2d3748;
    font-size: 28px;
    font-weight: 950;
    letter-spacing: -.04em;
}
.nm-service-card small {
    margin-top: 8px;
    color: #8491a3;
    font-size: 18px;
    font-weight: 800;
    line-height: 1.4;
}
.nm-service-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 54px;
    height: 54px;
    border-radius: 16px;
    background: #edf3fa;
}
.nm-service-icon svg {
    width: 25px;
    height: 25px;
}
.nm-service-card.is-blue .nm-service-icon { color: var(--blue); }
.nm-service-card.is-green .nm-service-icon { color: var(--nm-green); }
.nm-service-card.is-purple .nm-service-icon { color: var(--nm-purple); }
.nm-service-card.is-orange .nm-service-icon { color: #ff6b00; }

.nm-console-foot {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-top: 28px;
    padding-top: 26px;
    border-top: 1px solid rgba(164,177,196,.25);
}
.nm-console-foot div {
    text-align: center;
}
.nm-console-foot strong,
.nm-console-foot span {
    display: block;
}
.nm-console-foot strong {
    color: #344054;
    font-size: 30px;
    font-weight: 950;
    letter-spacing: -.04em;
}
.nm-console-foot span {
    margin-top: 8px;
    color: #98a2b3;
    font-size: 17px;
    font-weight: 850;
}
.nm-benefits {
    position: relative;
    z-index: 2;
    padding: 70px 0;
    background: var(--bg);
}
.nm-benefit-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}
.nm-benefit-grid article {
    display: flex;
    align-items: center;
    gap: 22px;
    min-height: 120px;
    padding: 28px;
    border: 1px solid var(--line);
    border-radius: 22px;
    background: #fff;
}
.nm-benefit-grid article > svg {
    flex: 0 0 auto;
    width: 30px;
    height: 30px;
    padding: 15px;
    border-radius: 18px;
    background: #edf4ff;
    color: var(--blue);
    box-sizing: content-box;
}
.nm-benefit-grid strong,
.nm-benefit-grid span {
    display: block;
}
.nm-benefit-grid strong {
    color: #253247;
    font-size: 23px;
    font-weight: 950;
    letter-spacing: -.035em;
}
.nm-benefit-grid span {
    margin-top: 7px;
    color: #526174;
    font-size: 17px;
    font-weight: 800;
    line-height: 1.45;
}

@media(max-width: 1200px) {
    .nm-hero-grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }
    .nm-hero-copy {
        max-width: 850px;
    }
    .nm-benefit-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media(max-width: 760px) {
    .nm-main {
        font-size: 16px;
    }
    .nm-main .wrap {
        width: min(100% - 32px, 1420px);
    }
    .nm-hero{
        min-height:calc(100svh - 72px);
        padding:56px 0;
    }
    .nm-hero-copy {
        padding: 10px 0;
    }
    .nm-hero-copy h1 {
        font-size: 46px;
    }
    .nm-hero-copy > p {
        font-size: 17px;
    }
    .nm-hero-actions {
        align-items: stretch;
        flex-direction: column;
    }
    .nm-btn {
        width: 100%;
    }
    .nm-trust-row {
        display: grid;
        gap: 10px;
    }
    .nm-reserve-console {
        padding: 20px;
        border-radius: 25px;
    }
    .nm-console-head {
        align-items: center;
    }
    .nm-console-head h2 {
        font-size: 36px;
    }
    .nm-live {
        display: none;
    }
    .nm-service-grid {
        grid-template-columns: 1fr;
    }
    .nm-service-card {
        min-height: 96px;
        padding: 20px;
    }
    .nm-service-card strong {
        font-size: 23px;
    }
    .nm-service-card small {
        font-size: 15px;
    }
    .nm-console-foot {
        gap: 5px;
    }
    .nm-console-foot strong {
        font-size: 24px;
    }
    .nm-console-foot span {
        font-size: 14px;
    }
    .nm-benefit-grid,
    .nm-main .price-grid,
    .nm-main .lift-grid,
    .nm-main .lesson-grid,
    .nm-main .news-grid,
    .nm-main .stay-grid,
    .nm-main .map-grid {
        grid-template-columns: 1fr;
    }
    .nm-benefits {
        padding-bottom: 45px;
    }
    .nm-benefit-grid article {
        padding: 22px;
    }
    .nm-benefit-grid strong {
        font-size: 20px;
    }
    .nm-benefit-grid span {
        font-size: 15px;
    }
}


.nm-hero{
    box-sizing:border-box;
}

.nm-hero-copy > p {
    max-width: 650px;
    margin: 30px auto 0;
    color: #5c6b80;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.75;
    letter-spacing: -.025em;
}

/* hero text motion */
.nm-kicker,
.nm-hero-copy h1,
.nm-hero-copy > p,
.nm-hero-actions,
.nm-trust-row{
    opacity:0;
    transform:translateY(18px);
    animation:nmHeroTextUp .72s cubic-bezier(.2,.8,.2,1) forwards;
}

.nm-kicker{
    animation-delay:.04s;
}

.nm-hero-copy h1{
    animation-delay:.16s;
}

.nm-hero-copy > p{
    animation-delay:.3s;
}

.nm-hero-actions{
    animation-delay:.44s;
}

.nm-trust-row{
    animation-delay:.58s;
}

@keyframes nmHeroTextUp{
    to{
        opacity:1;
        transform:translateY(0);
    }
}

/* blue text shine */
.nm-hero-copy h1 em{
    color:transparent;
    font-style:normal;
    background:linear-gradient(90deg,#2563eb 0%,#2d6cf6 38%,#8bb8ff 50%,#2d6cf6 62%,#2563eb 100%);
    background-size:220% auto;
    -webkit-background-clip:text;
    background-clip:text;
    animation:nmHeroShine 2.8s ease .95s 1 both;
}

@keyframes nmHeroShine{
    from{
        background-position:120% center;
    }
    to{
        background-position:-80% center;
    }
}

@media (prefers-reduced-motion:reduce){
    .nm-kicker,
    .nm-hero-copy h1,
    .nm-hero-copy > p,
    .nm-hero-actions,
    .nm-trust-row,
    .nm-hero-copy h1 em{
        animation:none;
        opacity:1;
        transform:none;
    }
}

.nm-benefit-head{
    justify-content:center;
    text-align:center;
}

.nm-benefit-head .section-desc{
    margin-left:auto;
    margin-right:auto;
}

.nm-benefit-cta{
    display:flex;
    justify-content:center;
    margin-top:34px;
}


.lift-section {
    background:#111827;
}

.lift-card {
    border:1px solid rgba(148,163,184,.2);
    background:#1f2937;
    box-shadow:0 18px 40px rgba(15,23,42,.22);
}

.lift-card h3 {
    color:#fff;
}

.lift-card .target span {
    background:rgba(45,108,246,.16);
    color:#93c5fd;
}

.lift-price div {
    border-top:1px solid rgba(255,255,255,.08);
}

.lift-price span {
    color:#cbd5e1;
}

.lift-price b {
    color:#fff;
}

.lift-price .discount-price {
    color:#60a5fa;
}

.discount-badge {
    background:#2d6cf6;
    color:#fff;
}

/* =========================================================
   Rental Price
========================================================= */

.price-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.price-card {
    background: #fff;
    border: 1px solid #eef2f7;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 12px 34px rgba(15, 23, 42, .08);
}

.thumb {
    height: 185px;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.price-body {
    padding: 22px;
}

.price-card h3 {
    margin-bottom: 12px;
    font-size: 22px;
    line-height: 1.35;
    font-weight: 900;
    letter-spacing: -0.8px;
}

.price-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    border-top: 1px solid #eef2f7;
    padding: 12px 0;
}

.price-row span:first-child {
    color: var(--text);
    font-weight: 700;
}

.price-row .normal {
    color: #98a2b3;
    text-decoration: line-through;
}

.price-row .reserve {
    color: var(--blue);
    font-size: 22px;
    font-weight: 900;
}


/* =========================================================
   Lift Discount
========================================================= */

.lift-section {
    background: #0f172a;
    color: #fff;
}

.lift-section .section-desc,
.lift-section .eyebrow {
    color: #cbd5e1;
}

.lift-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.lift-card {
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 26px;
    padding: 28px;
}

.lift-card h3 {
    font-size: 30px;
    line-height: 1.25;
    font-weight: 900;
    letter-spacing: -1px;
}

.lift-card .target {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 18px 0;
}

.lift-card .target span {
    padding: 6px 10px;
    border-radius: 999px;
    background: rgba(37, 99, 235, .35);
    font-size: 13px;
    font-weight: 900;
}

.lift-price {
    display: grid;
    gap: 10px;
}

.lift-price div {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    border-top: 1px solid rgba(255, 255, 255, .12);
    padding: 13px 0;
}

.lift-price span {
    color: #e5e7eb;
    font-weight: 700;
}

.lift-price b {
    color: var(--blue);
    font-size: 22px;
    font-weight: 900;
    white-space: nowrap;
}

.notice-box {
    margin-top: 22px;
    padding: 18px 20px;
    border-radius: 18px;
    background: rgba(255, 255, 255, .08);
    color: #e5e7eb;
    line-height: 1.7;
}

.lift-price .discount-price {
    display: inline-flex;
    align-items: center;
    justify-content: flex-end;
    color: #93c5fd;
    gap: 8px;
}

.discount-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 44px;
    height: 26px;
    padding: 0 9px;
    border-radius: 999px;
    background: var(--blue);
    color: #fff;
    font-size: 14px;
    line-height: 1;
    font-style: normal;
    font-weight: 900;
    letter-spacing: -0.3px;
}
/* =========================================================
   Lesson
========================================================= */

.lesson-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.lesson-card {
    background: #fff;
    border: 1px solid #eef2f7;
    border-radius: 26px;
    padding: 28px;
    box-shadow: 0 12px 34px rgba(15, 23, 42, .08);
}

.lesson-card h3 {
    font-size: 26px;
    line-height: 1.3;
    font-weight: 900;
    letter-spacing: -1px;
}

.lesson-card ul {
    display: grid;
    gap: 10px;
    margin: 18px 0;
    color: var(--text);
}

.lesson-card li {
    position: relative;
    padding-left: 22px;
    line-height: 1.6;
}

.lesson-card li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    color: var(--blue);
    font-weight: 900;
}

.lesson-price {
    color: var(--blue);
    font-size: 34px;
    line-height: 1.15;
    font-weight: 900;
    letter-spacing: -1.2px;
}


/* =========================================================
   Stay
========================================================= */

.stay {
    background: #fff;
}

.stay-grid {
    display: grid;
    grid-template-columns: .95fr 1.05fr;
    gap: 34px;
    align-items: center;
}

.stay-photo {
    min-height: 420px;
    border-radius: 32px;
    background: url("/img/mentor/stay_main.webp") center / cover no-repeat;
    box-shadow: var(--shadow);
}

.stay-content {
    min-width: 0;
}

.stay-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin: 24px 0;
}

.stay-list span {
    padding: 15px 16px;
    border-radius: 16px;
    background: #f8fafc;
    font-weight: 700;
}


/* =========================================================
   News
========================================================= */

.news-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.news-card {
    background: #fff;
    border: 1px solid #eef2f7;
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(15, 23, 42, .07);
}

.news-card .thumb {
    height: 150px;
}

.news-body,
.news-card div:last-child {
    padding: 18px;
}

.news-card h3 {
    margin-bottom: 8px;
    font-size: 18px;
    line-height: 1.35;
    font-weight: 900;
    letter-spacing: -0.5px;
}

.news-card time {
    color: #98a2b3;
    font-size: 13px;
    font-weight: 800;
}


/* =========================================================
   Location
========================================================= */

.map-section {
    background: #fff;
}

.map-grid {
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 28px;
    align-items: stretch;
}

.map-box {
    position: relative;
    height: 420px;
    border-radius: 28px;
    overflow: hidden;
    background: #dbeafe;
}

.map-box::before {
    content: "MAP";
    position: absolute;
    inset: 0;
    z-index: 0;
    display: grid;
    place-items: center;
    color: #93c5fd;
    font-size: 64px;
    font-weight: 900;
    letter-spacing: -2px;
}

.map-box .root_daum_roughmap {
    position: relative;
    z-index: 1;
    width: 100% !important;
    height: 100% !important;
}

.map-box .root_daum_roughmap .wrap_map {
    width: 100% !important;
    height: 100% !important;
}

.info-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    background: #f8fafc;
    border-radius: 28px;
    padding: 30px;
}

.info-card dl {
    display: grid;
    gap: 16px;
    margin: 20px 0;
}

.info-card dt {
    font-weight: 900;
}

.info-card dd {
    margin: 4px 0 0;
    color: var(--text);
    line-height: 1.55;
}

.info-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: auto;
}

@media (max-width: 900px) {
    .map-grid {
        grid-template-columns: 1fr;
    }

    .map-box {
        display: none;
    }

    .info-card {
        height: auto;
        border-radius: 22px;
        padding: 24px;
    }

    .info-actions {
        margin-top: 20px;
    }
}


/* =========================================================
   인스타그램
========================================================= */

.mentor-instagram-section{
   background:#fff;
}

.mentor-instagram-grid{
   display:grid;
   grid-template-columns:repeat(3,minmax(0,1fr));
   gap:20px;
   margin-top:42px;
}

.mentor-instagram-item{
   min-width:0;
   overflow:hidden;
   border:1px solid #e4e7ec;
   border-radius:22px;
   background:#fff;
   box-shadow:0 10px 28px rgba(16,24,40,.06);
   transition:
      transform .25s ease,
      border-color .25s ease,
      box-shadow .25s ease;
}

.mentor-instagram-link{
   display:flex;
   flex-direction:column;
   height:100%;
   color:#101828;
   text-decoration:none;
}

.mentor-instagram-link:hover{
   color:#101828;
   text-decoration:none;
}

.mentor-instagram-image{
   position:relative;
   overflow:hidden;
   aspect-ratio:1/1;
   background:#f2f4f7;
}

.mentor-instagram-image::after{
   content:"";
   position:absolute;
   inset:0;
   background:rgba(16,24,40,0);
   pointer-events:none;
   transition:background .25s ease;
}

.mentor-instagram-image img{
   display:block;
   width:100%;
   height:100%;
   object-fit:cover;
   object-position:center;
   filter:brightness(1.03) contrast(1.02) saturate(1.04);
   transition:
      transform .4s cubic-bezier(.2,.8,.2,1),
      filter .4s ease;
}

.mentor-instagram-type{
   position:absolute;
   top:14px;
   right:14px;
   z-index:2;
   display:inline-flex;
   align-items:center;
   justify-content:center;
   min-width:54px;
   height:27px;
   padding:0 10px;
   border-radius:999px;
   background:rgba(16,24,40,.86);
   color:#fff;
   font-size:11px;
   font-weight:900;
   line-height:1;
   letter-spacing:0;
   backdrop-filter:blur(6px);
}

.mentor-instagram-content{
   display:flex;
   flex:1;
   flex-direction:column;
   padding:17px 18px 16px;
   border-top:1px solid #eef2f6;
}

.mentor-instagram-caption{
   display:-webkit-box;
   overflow:hidden;
   min-height:47px;
   margin:0;
   color:#344054;
   font-size:14px;
   font-weight:700;
   line-height:1.65;
   word-break:keep-all;
   -webkit-box-orient:vertical;
   -webkit-line-clamp:2;
}

.mentor-instagram-date{
   display:block;
   margin-top:12px;
   color:#98a2b3;
   font-size:12px;
   font-weight:700;
   line-height:1;
}

@media(hover:hover){
   .mentor-instagram-item:hover{
      transform:translateY(-4px);
      border-color:#b2ccff;
      box-shadow:0 18px 40px rgba(37,99,235,.12);
   }

   .mentor-instagram-item:hover .mentor-instagram-image img{
      transform:scale(1.055);
      filter:brightness(1.07) contrast(1.03) saturate(1.08);
   }

   .mentor-instagram-item:hover .mentor-instagram-image::after{
      background:rgba(37,99,235,.05);
   }
}

@media(max-width:1024px){
   .mentor-instagram-grid{
      grid-template-columns:repeat(2,minmax(0,1fr));
      gap:16px;
      margin-top:34px;
   }
}

@media(max-width:640px){
   .mentor-instagram-grid{
      grid-template-columns:repeat(2,minmax(0,1fr));
      gap:9px;
      margin-top:28px;
   }

   .mentor-instagram-item{
      border-radius:16px;
      box-shadow:0 6px 18px rgba(16,24,40,.06);
   }

   .mentor-instagram-content{
      padding:11px 11px 12px;
   }

   .mentor-instagram-caption{
      min-height:40px;
      font-size:12px;
      line-height:1.55;
   }

   .mentor-instagram-date{
      margin-top:8px;
      font-size:10px;
   }

   .mentor-instagram-type{
      top:9px;
      right:9px;
      min-width:45px;
      height:23px;
      padding:0 8px;
      font-size:9px;
   }
}
