
    /* --- 기본 설정 및 변수 --- */
    :root {
        --primary-blue: #0056b3;
        --primary-green: #28a745;
        /* [추가] 성비 표현을 위한 보라색 변수 */
        --primary-purple: #9b59b6;
        --glass-bg: rgba(255, 255, 255, 0.75);
        --glass-border: 1px solid rgba(255, 255, 255, 0.6);
        --glass-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.1);
        --text-dark: #333;
        --text-gray: #555;
    }


    /* --- 스틱형 메뉴 (Menu Stick) --- */
    .content-tabs {
        display: flex;
        justify-content: center;
        gap: 10px;
        background: rgba(255, 255, 255, 0.4);
        backdrop-filter: blur(10px);
        padding: 10px;
        border-radius: 50px;
        border: var(--glass-border);
        box-shadow: var(--glass-shadow);
        margin-bottom: 50px;
        position: sticky;
        top: 20px;
        z-index: 50;
        max-width: 700px;
        margin-left: auto;
        margin-right: auto;
        flex-wrap: wrap;
    }

    .tab-btn {
        background: transparent;
        border: none;
        padding: 10px 20px;
        border-radius: 30px;
        font-weight: 600;
        color: var(--text-gray);
        cursor: pointer;
        transition: all 0.3s ease;
        white-space: nowrap;
    }

    .tab-btn:hover { color: var(--primary-blue); background: rgba(255,255,255,0.5); }
    
    .tab-btn.active {
        background: linear-gradient(90deg, var(--primary-blue), var(--primary-green));
        color: #fff;
        box-shadow: 0 4px 15px rgba(0, 86, 179, 0.3);
    }

    /* --- 공통 글래스 카드 스타일 --- */
    .glass-card {
        background: var(--glass-bg);
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
        border: var(--glass-border);
        border-radius: 20px;
        padding: 15px;
        box-shadow: var(--glass-shadow);
        margin-bottom: 30px;
        transition: transform 0.3s ease;
    }
    .glass-card:hover { transform: translateY(-5px); }

    /* 텍스트 스타일 */
    h3 { font-size: 1.8rem; color: var(--primary-blue); margin-bottom: 20px; font-weight: 700; }
    h4 { font-size: 1.1rem; color: var(--text-dark); line-height: 1.6; font-weight: 500; margin-bottom: 5px; }
    p, li { color: var(--text-gray); line-height: 1.7; }
    li.indent{ margin-left: 20px; }


    /* =========================================
       [추가] 조직 구성(Organization) 스타일
       ========================================= */
    
    /* 섹션 구분 타이틀 */
    .org-section-title {
        font-size: 1.4rem;
        font-weight: 700;
        color: var(--text-dark);
        margin-top: 3rem;
        margin-bottom: 1.5rem;
        padding-left: 15px;
        border-left: 5px solid var(--primary-blue);
        line-height: 1;
    }
    .org-section-title:first-of-type { margin-top: 0; }

    /* 임원 리스트 (텍스트형) */
    .executive-list {
        display: flex;
        flex-wrap: wrap;
        gap: 15px;
        background-color: rgba(255,255,255,0.6);
        padding: 2rem;
        border-radius: 16px;
        border: 1px solid rgba(255,255,255,0.5);
    }
    .executive-item {
        font-size: 1.1rem;
        width: 48%; /* 2열 배치 */
        display: flex;
        align-items: center;
        border-bottom: 1px solid rgba(0,0,0,0.05);
        padding-bottom: 10px;
        margin-bottom: 5px;
    }
    .executive-item:nth-last-child(-n+2) { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }

    .executive-item em {
        font-style: normal;
        font-weight: 700;
        color: var(--primary-blue);
        margin-right: 1rem;
        min-width: 80px;
        display: inline-block;
    }
    .executive-item span {
        color: var(--text-dark);
        font-weight: 500;
    }

    /* 프로필 그리드 (사진형) */
    .profile-grid {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
        gap: 20px;
        margin-bottom: 20px;
    }

    .profile-card {
        background-color: #fff;
        border: 1px solid rgba(0,0,0,0.05);
        border-radius: 12px;
        overflow: hidden;
        text-align: center;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        box-shadow: 0 4px 10px rgba(0,0,0,0.03);
    }
    .profile-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 20px rgba(0, 50, 150, 0.1);
        border-color: var(--primary-blue);
    }

    .profile-card .img-box {
        width: 100%;
        padding-top: 133.33%; /* 3:4 비율 */
        position: relative;
        background-color: #e0e0e0; /* 이미지가 없을 때 회색 배경 */
    }
    .profile-card .img-box img {
        position: absolute;
        top: 0; left: 0;
        width: 100%; height: 100%;
        object-fit: cover;
    }
    .profile-card .txt-box {
        padding: 1rem 0.8rem;
    }
    .profile-card .name {
        font-size: 1.15rem;
        font-weight: 700;
        margin-bottom: 0.3rem;
        color: var(--text-dark);
    }
    .profile-card p {
        font-size: 0.71rem;
        color: #777;
        line-height: 1.4;
        margin: 0;
        word-break: keep-all;
    }

    /* =========================================
       [추가] 강사진 인포그래픽 스타일 (애플 스타일 레퍼런스 반영)
       ========================================= */
    .infographic-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
        margin-bottom: 40px;
    }

    .info-item {
        /* 기존 glass-card 스타일 재활용 및 덮어쓰기 */
        background: var(--glass-bg);
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
        border: var(--glass-border);
        box-shadow: var(--glass-shadow);
        border-radius: 24px; /* 레퍼런스처럼 더 둥글게 */
        padding: 35px 30px;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        min-height: 220px;
    }
    .info-item:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    }

    /* 그리드 합치기 */
    .grid-col-2 { grid-column: span 2; }

    /* 텍스트 및 아이콘 스타일 */
    .info-header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin-bottom: 15px;
    }
    .info-icon {
        font-size: 2.5rem;
        margin-bottom: 15px;
        display: inline-block;
    }
    .info-label {
        font-size: 1.1rem;
        font-weight: 600;
        color: var(--text-dark);
        margin: 0;
    }
    .big-number {
        font-size: 3.8rem;
        font-weight: 800;
        line-height: 1;
        color: var(--text-dark);
        margin-bottom: 10px;
        letter-spacing: -1px;
    }
    .big-number .unit {
        font-size: 1.8rem;
        font-weight: 600;
        margin-left: 5px;
        color: var(--text-gray);
    }
    .sub-text {
        font-size: 1rem;
        color: var(--text-gray);
        font-weight: 500;
    }

    /* 색상 및 그라데이션 포인트 */
    .text-blue { color: var(--primary-blue) !important; }
    .text-green { color: var(--primary-green) !important; }
    .text-purple { color: var(--primary-purple) !important; }
    .text-gradient-rainbow {
        background: linear-gradient(to right, #ff5f6d, #ffc371, #28a745, #0056b3, #9b59b6);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        font-weight: 800;
    }

    /* 성비 그래프 스타일 */
    .gender-ratio-bar {
        display: flex;
        height: 12px;
        background-color: #eee;
        border-radius: 6px;
        overflow: hidden;
        margin: 15px 0;
    }
    .ratio-segment { height: 100%; }
    .ratio-male { background-color: var(--primary-blue); }
    .ratio-female { background-color: var(--primary-purple); }
    .gender-labels {
        display: flex;
        justify-content: space-between;
        font-size: 0.95rem;
        font-weight: 600;
    }

    /* 전문분야 리스트 스타일 */
    .expertise-list-h {
        display: flex;
        justify-content: space-around;
        align-items: center;
        margin-top: 20px;
        text-align: center;
    }
    .expertise-item {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .expertise-icon {
        font-size: 2.2rem;
        margin-bottom: 10px;
        padding: 15px;
        border-radius: 50%;
        background: rgba(255,255,255,0.7);
        box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    }
    .expertise-name {
        font-weight: 600;
        color: var(--text-dark);
    }


    /* --- 연혁 (Timeline) 스타일 --- */
    .timeline-container { position: relative; padding-left: 20px; }
    .timeline-line {
        position: absolute; left: 120px; top: 15px; bottom: 0; width: 2px;
        background: linear-gradient(to bottom, var(--primary-blue) 0%, rgba(0,86,179,0.1) 100%); z-index: 0;
    }
    .timeline-row { display: flex; margin-bottom: 50px; position: relative; z-index: 1; }
    .timeline-year-col { flex: 0 0 100px; padding-right: 20px; text-align: right; position: relative; }
    .year-text {
        font-size: 2rem; font-weight: 800; color: var(--primary-blue); line-height: 1;
        background: linear-gradient(90deg, #0056b3, #0088cc); -webkit-background-clip: text; -webkit-text-fill-color: transparent; display: inline-block;
    }
    .year-dot {
        position: absolute; right: -7px; top: 5px; width: 14px; height: 14px; background: #fff;
        border: 3px solid var(--primary-blue); border-radius: 50%; box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.7); z-index: 2;
    }
    .timeline-content-col { flex: 1; padding-left: 30px; padding-top: 5px; }
    .history-list { list-style: none; padding: 0; margin: 0; }
    .history-list li { margin-bottom: 12px; font-size: 1.05rem; color: #444; position: relative; padding-left: 15px; word-break: keep-all; }
    .history-list li::before { content: ''; position: absolute; left: 0; top: 10px; width: 4px; height: 4px; background-color: #aaa; border-radius: 50%; }
    .history-date { font-weight: 700; color: var(--text-dark); margin-right: 5px; }
    .highlight-text { color: var(--primary-blue); font-weight: 600; }

    /* --- FAMILY SITE --- */
    .family-site-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
        margin-top: 40px;
        width: 100%;
    }

    .family-site-item {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
        padding: 50px 20px;
        background: rgba(255, 255, 255, 0.75);
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
        border-radius: 20px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.05);
        text-decoration: none;
        color: inherit;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        min-height: 280px;
        border: 1px solid rgba(0,0,0,0.02);
    }

    .family-site-item:hover {
        transform: translateY(-8px);
        box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    }

    .family-site-item img {
        height: 60px;
        width: auto;
        max-width: 90%;
        margin-bottom: 25px;
        object-fit: contain;
    }

    .family-site-item h3 {
        font-size: 1.25rem;
        font-weight: 700;
        margin-bottom: 10px;
        color: #0056b3;
    }

    .family-site-item p {
        font-size: 0.95rem;
        color: #888;
        letter-spacing: 0.5px;
    }

    /* --- 기타 탭 스타일 --- */
    .green-card-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 20px; margin-top: 30px; }
    .green-card {
        background: linear-gradient(135deg, #43a047 0%, #2e7d32 100%);
        border-radius: 15px; padding: 30px 20px; text-align: center; color: #fff;
        box-shadow: 0 10px 20px rgba(46, 125, 50, 0.2); transition: transform 0.3s ease;
        display: flex; flex-direction: column; align-items: center;
    }
    .green-card:hover { transform: translateY(-5px); }
    .green-card h4 { color: #fff !important; font-size: 1.3rem; margin-bottom: 15px; border-bottom: 2px solid rgba(255,255,255,0.3); padding-bottom: 10px; width: 100%; }
    .green-card p { color: rgba(255,255,255,0.95) !important; font-size: 0.95rem; line-height: 1.6; }

    .ci-intro-visual { display: flex; align-items: center; gap: 40px; margin-top: 0px; text-align: center; background-color: #f8f9fa; padding: 40px; border-radius: 10px;}
    .ci-intro-section { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; padding-top: 20px; }
    .ci-intro-text h3 { font-size: 24px; margin-bottom: 20px; }
    .ci-intro-text p { font-size: 16px; line-height: 1.8; color: #555; margin-bottom: 15px; }
    .ci-intro-visual .ci-logo { max-width: 60%; margin-bottom: 30px; }

    .ci-logo { filter: drop-shadow(0 4px 6px rgba(0,0,0,0.1)); margin-left: 20%; margin-right: 20%; }
    .ci-logo2 {
        place-items: center;
        align-content: center;
        margin-left: 5%;
        max-width: 90%;
        margin-right: 5%;
        margin-bottom: 0%;
        border-radius: 25px;
        display: block;
        margin-top: 0%;
    }
    .color-palette { display: flex; gap: 20px; flex-wrap: wrap; justify-content: center; margin-bottom: 25px; height: 150px; width: 100%; }
    .color-chip-wrapper { position: relative; width: 120px; justify-content: center; display: flex; align-items: center; gap: 15px; background: rgba(255,255,255,0.5); padding: 15px; border-radius: 15px; }
    .color-chip { width: 50px; height: 50px; border-radius: 50%; box-shadow: inset 0 2px 5px rgba(0,0,0,0.1); cursor: pointer; transition: all 0.4s ease; border: 4px solid #fff; }
    .color-chip.blue { background-color: var(--primary-blue); }
    .color-chip.green { background-color: var(--primary-green); }
    .color-chip-wrapper:hover .color-chip { transform: scale(1.2); }
    .color-chip-wrapper:hover .color-desc { opacity: 1; visibility: visible; top: 110px; }
    .ci-summary { font-size: 15px; color: #555; line-height: 1.7; max-width: 400px; }

    .color-desc { position: absolute; top: 90px; left: 50%; transform: translateX(-50%); width: 250px; padding: 15px; background-color: #fff; border-radius: 8px; box-shadow: 0 5px 15px rgba(0,0,0,0.1); opacity: 0; visibility: hidden; transition: all 0.4s ease; }
    .color-desc h4 { font-size: 16px; margin-bottom: 8px; }
    .color-desc p { font-size: 14px; color: #555; line-height: 1.6; }


    
    /* 리스트 스타일 보완 */
    .info-list  { margin-top: 100px;  }
    .info-list li { margin-bottom: 10px; position: relative; padding-left: 15px; line-height: 1.6; }
    .info-list li::before { content: '•'; color: var(--primary-blue); position: absolute; left: 0; font-weight: bold; }

    .activity-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 25px; }
    .activity-card {
        background: rgba(255, 255, 255, 0.85); border-radius: 20px; overflow: hidden;
        border: 1px solid rgba(255,255,255,0.8); box-shadow: 0 4px 15px rgba(0,0,0,0.05); transition: transform 0.4s ease;
    }
    .activity-card:hover { transform: translateY(-10px); }
    .activity-thumbnail img { width: 100%; height: 200px; object-fit: cover; }
    .activity-body { padding: 25px; }
    .activity-body h4 { color: var(--primary-blue); font-size: 1.3rem; margin-bottom: 15px; }
    .activity-body ul { padding-left: 20px; font-size: 0.95rem; }

    .fade-in-up { opacity: 0; transform: translateY(20px); transition: opacity 0.6s ease-out, transform 0.6s ease-out; }
    .fade-in-up.visible { opacity: 1; transform: translateY(0); }
    
    .tab-content { display: none; animation: fadeIn 0.5s ease-in-out; }
    .tab-content.active { display: block; }
    @keyframes fadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }

    
    /* ESG */
    .esg-section-wrapper {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding: 60px 20px;
        background-color: #f8f9fa; /* 배경색: 밝은 회색 */
        font-family: 'Pretendard', -apple-system, BlinkMacSystemFont, system-ui, Roboto, sans-serif;
    }

    .esg-title {
        font-size: 24px;
        font-weight: 700;
        color: #333;
        margin-bottom: 40px;
        text-align: center;
    }

    .triangle-container {
        position: relative;
        width: 400px;
        height: 350px;
        margin: 0 auto;
    }

    /* 배경 삼각형 선 (SVG) */
    .triangle-lines {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 1;
        pointer-events: none; /* 마우스 이벤트가 선에 가려지지 않게 함 */
    }

    .triangle-lines line {
        stroke: #d1d5db;
        stroke-width: 2;
        stroke-dasharray: 5, 5; /* 점선 효과 */
    }

    /* 중앙 텍스트 */
    .center-label {
        position: absolute;
        top: 55%;
        left: 50%;
        transform: translate(-50%, -50%);
        text-align: center;
        z-index: 2;
        color: #555;
        font-weight: 600;
        font-size: 14px;
        pointer-events: none;
    }

    /* --- [수정] 꼭짓점 노드 공통 스타일 --- */
    .esg-node {
        position: absolute;
        width: 70px;
        height: 70px;
        border-radius: 50%;
        background: white;
        box-shadow: 0 4px 15px rgba(0,0,0,0.1);
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        z-index: 10;
        transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        border: 2px solid transparent;
    }

    /* 노드 내부 텍스트 및 아이콘 위치/전환 설정 */
    .node-text, .node-icon {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        transition: all 0.3s ease;
    }

    /* 기본 상태: 텍스트 보임 */
    .node-text {
        font-weight: 800;
        font-size: 20px;
        opacity: 1;
        transform: translate(-50%, -50%) scale(1);
    }

    /* 기본 상태: 아이콘 숨김 */
    .node-icon {
        opacity: 0;
        transform: translate(-50%, -50%) scale(0.5); /* 작아져 있다가 커지며 등장 */
        width: 32px;
        height: 32px;
    }
    .node-icon svg {
        width: 100%;
        height: 100%;
        fill: #fff; /* 아이콘 색상은 흰색 */
    }

    /* 노드 개별 색상 설정 */
    .node-e { top: 0; left: 50%; transform: translateX(-50%); border-color: #28a745; color: #28a745; }
    .node-s { bottom: 0; left: 0; border-color: #007bff; color: #007bff; }
    .node-g { bottom: 0; right: 0; border-color: #6f42c1; color: #6f42c1; }

    /* [수정] 호버 시 노드 효과 */
    .esg-node:hover {
        transform: scale(1.15) translateX(0);
        background-color: currentColor; /* 텍스트 색상을 배경색으로 사용 */
        box-shadow: 0 8px 25px rgba(0,0,0,0.2);
    }
    .node-e:hover { transform: translateX(-50%) scale(1.15); }

    /* 호버 시 내용 교체 (텍스트 숨김 -> 아이콘 등장) */
    .esg-node:hover .node-text {
        opacity: 0;
        transform: translate(-50%, -50%) scale(0.5);
    }
    .esg-node:hover .node-icon {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1);
    }

    /* 펄스 애니메이션 */
    @keyframes pulse-border {
        0% { box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.1); }
        70% { box-shadow: 0 0 0 10px rgba(0, 0, 0, 0); }
        100% { box-shadow: 0 0 0 0 rgba(0, 0, 0, 0); }
    }
    .esg-node { animation: pulse-border 2s infinite; }
    .esg-node:hover { animation: none; } /* 호버 시 펄스 멈춤 */

    /* 설명 툴팁 (Info Box) 스타일 */
    .info-box {
        position: absolute;
        width: 220px;
        background: white;
        padding: 15px;
        border-radius: 12px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.15);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        z-index: 20;
        pointer-events: none; /* 툴팁 위에서 깜빡임 방지 */
        text-align: left;
    }

    /* 툴팁 위치 및 화살표 */
    .node-e .info-box { top: 85px; left: 50%; transform: translateX(-50%) translateY(-10px); }
    .node-s .info-box { bottom: 85px; left: 0; transform: translateY(10px); }
    .node-g .info-box { bottom: 85px; right: 0; transform: translateY(10px); text-align: right; }

    /* 호버 시 툴팁 등작 */
    .esg-node:hover .info-box {
        opacity: 1;
        visibility: visible;
        transform: translateX(-50%) translateY(0); /* E 위치 */
    }
    .node-s:hover .info-box { transform: translateY(0); } /* S 위치 */
    .node-g:hover .info-box { transform: translateY(0); } /* G 위치 */


    /* 툴팁 내부 텍스트 */
    .info-box h4 { margin: 0 0 8px 0; font-size: 16px; color: #333; }
    .info-box p { margin: 0; font-size: 13px; color: #666; line-height: 1.5; word-break: keep-all;}
    
    /* 반응형 처리 (모바일) */
    @media (max-width: 500px) {
        .triangle-container { width: 300px; height: 260px; }
        .esg-node { width: 55px; height: 55px; font-size: 16px; }
        .info-box { width: 180px; padding: 10px; }
    }



       /* 반응형 */
    @media (max-width: 992px) {
        .family-site-grid { grid-template-columns: repeat(2, 1fr); }
        /* 인포그래픽 반응형 */
        .infographic-grid { grid-template-columns: 1fr; }
        .grid-col-2 { grid-column: span 1; }
        .info-item { min-height: auto; padding: 30px 25px; }
        .big-number { font-size: 3rem; }
	.triangle-container { display: none; }
    }
    @media (max-width: 768px) {
		h3{font-size: 1.4rem;}
		h4{font-size: 0.9rem;}
		.glass-card{padding:40px 20px;}
        .ci-intro-visual { flex-direction: column; align-items: flex-start; }
        .content-tabs { flex-wrap: wrap; border-radius: 20px; justify-content: flex-start; }
        .tab-btn { flex: 1 1 auto; text-align: center; }

        .year-text{font-size: 1.4rem;}
        .year-dot { left: -5px; right: auto; }
		.history-list li{font-size: 0.9rem;}

        .timeline-line { left: 20px; }
        .timeline-row { flex-direction: column; margin-bottom: 40px; }
        .timeline-year-col { text-align: left; padding-left: 30px; margin-bottom: 10px; flex: auto; }
        .timeline-content-col { padding-left: 30px; }

        .family-site-grid { grid-template-columns: 1fr; }
        .executive-item { width: 100%; }
        .profile-grid { grid-template-columns: repeat(auto-fill, minmax(140px, 1fr)); }

        .expertise-list-h { flex-direction: column; gap: 20px; }
		.info-list  { margin-top: 10px;  }
		.info-list li{font-size:13px;}
		.ci-intro-visual .ci-logo{margin-bottom:0px;}
		.sub-text, .green-card p{font-size: 0.8rem;}
		.activity-body h4{font-size: 1.1rem;}
		.activity-body ul{padding-left:10px;font-size: 0.8rem; }
		.activity-body li{padding-left:25px;}
		.ci-intro-visual{margin-top:0px;}
		.ci-logo2{margin:0px;max-width:100%;padding:0px}
		.ci-intro-visual{padding:0px; margin-bottom:30px;}
		.glass-card h3, .green-card h4{font-size: 1.1rem;}

		.family-site-item{padding:30px 10px;    min-height: 180px;}
    }
