/* ============ REVIEWS ============ */ .hm-revs__title { font-family: var(--t-headline-font); font-size: 19px; font-weight: 600; margin: 44px 0 20px; display: flex; align-items: center; gap: 12px; } .hm-revs__wrap { display: flex; gap: 40px; align-items: flex-start; } .hm-revs__left { flex: 1 1 0; min-width: 0; } .hm-revs__right { flex: 1 1 0; min-width: 0; } .hm-revs__hd { font-family: var(--t-headline-font); font-size: 15px; font-weight: 600; margin-bottom: 16px; } .hm-revs__hd b { color: #3498db; } .hm-revs__note { background: #e8f4fc; border-radius: 10px; padding: 12px 16px; font-size: 12px; color: #2c6f97; line-height: 1.5; margin-bottom: 20px; } .hm-revs__more { text-align: center; margin: 20px 0; } .hm-revs__more a { border: 1.5px solid #3498db; border-radius: 10px; color: #3498db; padding: 10px 24px; font-size: 13px; font-weight: 600; font-family: var(--t-headline-font); display: inline-block; text-decoration: none; } /* Review card */ .hm-rev { background: #fff; border-radius: 12px; padding: 18px; margin-bottom: 10px; box-shadow: 0 1px 6px rgba(0,0,0,0.03); border-left: 3px solid transparent; } .hm-rev:hover { border-left-color: #3498db; } .hm-rev__top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 8px; } .hm-rev__author { display: flex; align-items: center; gap: 8px; } .hm-rev__avatar { width: 30px; height: 30px; border-radius: 50%; background: #e8f4fc; display: flex; align-items: center; justify-content: center; font-family: var(--t-headline-font); font-size: 13px; font-weight: 700; color: #3498db; flex-shrink: 0; } .hm-rev__name { font-family: var(--t-headline-font); font-size: 13px; font-weight: 600; } .hm-rev__tg { font-size: 11px; color: #3498db; } .hm-rev__date { font-size: 11px; color: #bbb; } .hm-rev__stars { color: #3498db; font-size: 13px; letter-spacing: 1px; margin-bottom: 6px; } .hm-rev__tag { display: inline-block; font-size: 10px; font-weight: 500; color: #3498db; background: #e8f4fc; padding: 2px 8px; border-radius: 6px; margin-bottom: 8px; } .hm-rev__txt { font-size: 13px; color: #555; line-height: 1.55; margin: 0; } /* Write form */ .hm-rev__form { background: #fff; border-radius: 14px; padding: 24px; box-shadow: 0 2px 12px rgba(0,0,0,0.04); margin-top: 20px; } .hm-rev__form-t { font-family: var(--t-headline-font); font-size: 16px; font-weight: 600; margin-bottom: 4px; } .hm-rev__form-s { font-size: 13px; color: #888; margin-bottom: 18px; } .hm-rev__field { margin-bottom: 14px; } .hm-rev__field label { display: block; font-size: 12px; font-weight: 600; color: #555; margin-bottom: 5px; } .hm-rev__field input, .hm-rev__field textarea { width: 100%; background: #f2f8fd; border: 1.5px solid #c5dced; border-radius: 10px; padding: 10px 14px; font-size: 13px; color: #1a1d23; transition: border-color .2s; } .hm-rev__field input:focus, .hm-rev__field textarea:focus { outline: none; border-color: #3498db; } .hm-rev__field textarea { min-height: 100px; resize: vertical; } .hm-rev__err { font-size: 11px; color: #e74c3c; margin-top: 4px; display: none; } .hm-rev__ok { display: none; background: #e8f8ef; border-radius: 10px; padding: 16px; text-align: center; margin-top: 12px; } .hm-rev__ok--show { display: block; } .hm-rev__ok-t { font-family: var(--t-headline-font); font-size: 14px; font-weight: 600; color: #059669; margin-bottom: 4px; } .hm-rev__ok-p { font-size: 12px; color: #047857; } /* Survey */ .hm-svy__head { margin-bottom: 16px; } .hm-svy__title { font-family: var(--t-headline-font); font-size: 16px; font-weight: 600; margin-bottom: 4px; } .hm-svy__sub { font-size: 13px; color: #888; margin-bottom: 14px; } .hm-svy__legend { background: #f2f8fd; border-radius: 10px; padding: 14px 16px; margin-bottom: 20px; } .hm-svy__legend-t { font-size: 12px; font-weight: 600; color: #555; margin-bottom: 8px; } .hm-svy__legend-r { display: flex; flex-wrap: wrap; gap: 8px; } .hm-svy__legend-i { font-size: 11px; color: #777; display: flex; gap: 4px; } .hm-svy__legend-i b { color: #1a1d23; font-weight: 600; } .hm-svy__form { background: #fff; border-radius: 14px; padding: 24px; box-shadow: 0 2px 12px rgba(0,0,0,0.04); margin-top: 16px; } /* Accordion */ .hm-svy-cat { background: #fff; border-radius: 12px; margin-bottom: 8px; box-shadow: 0 1px 6px rgba(0,0,0,0.03); overflow: hidden; } .hm-svy-cat__hd { padding: 14px 18px; cursor: pointer; display: flex; align-items: center; gap: 10px; user-select: none; } .hm-svy-cat__hd:hover { background: #f7fbfe; } .hm-svy-cat__num { width: 26px; height: 26px; border-radius: 8px; background: #e8f4fc; display: flex; align-items: center; justify-content: center; font-family: var(--t-headline-font); font-size: 12px; font-weight: 700; color: #3498db; flex-shrink: 0; } .hm-svy-cat__nm { font-family: var(--t-headline-font); font-size: 13px; font-weight: 600; flex: 1; } .hm-svy-cat__cnt { font-size: 11px; color: #aaa; margin-right: 4px; } .hm-svy-cat__arr { width: 14px; height: 14px; flex-shrink: 0; transition: transform .2s; } .hm-svy-cat--open .hm-svy-cat__arr { transform: rotate(180deg); } .hm-svy-cat__bd { display: none; padding: 0 18px 18px; } .hm-svy-cat--open .hm-svy-cat__bd { display: block; } /* Survey question */ .hm-svy-q { padding: 14px 0; border-top: 1px solid #f0f0f0; } .hm-svy-q:first-child { border-top: none; } .hm-svy-q__t { font-size: 13px; font-weight: 600; color: #1a1d23; margin-bottom: 10px; line-height: 1.4; } .hm-svy-q__scale { display: flex; gap: 6px; margin-bottom: 8px; } .hm-svy-q__btn { width: 44px; height: 36px; border-radius: 8px; border: 1.5px solid #dce9f3; background: #fff; font-family: var(--t-headline-font); font-size: 14px; font-weight: 600; color: #888; cursor: pointer; transition: all .15s; display: flex; align-items: center; justify-content: center; } .hm-svy-q__btn:hover { border-color: #3498db; color: #3498db; } .hm-svy-q__btn--active { background: #3498db; border-color: #3498db; color: #fff; } .hm-svy-q__btn--low.hm-svy-q__btn--active { background: #e74c3c; border-color: #e74c3c; } .hm-svy-q__lbl { display: flex; justify-content: space-between; padding: 0 2px; margin-bottom: 10px; } .hm-svy-q__lbl span { font-size: 9px; color: #bbb; } .hm-svy-q__follow { display: none; background: #f9fbfd; border-radius: 8px; padding: 12px 14px; margin-top: 4px; } .hm-svy-q__follow--show { display: block; } .hm-svy-q__follow-t { font-size: 11px; font-weight: 600; color: #555; margin-bottom: 8px; } .hm-svy-q__opt { display: flex; align-items: center; gap: 8px; padding: 5px 0; cursor: pointer; } .hm-svy-q__opt input { accent-color: #3498db; width: 14px; height: 14px; } .hm-svy-q__opt span { font-size: 12px; color: #555; } .hm-svy-q__other { margin-top: 6px; display: none; } .hm-svy-q__other--show { display: block; } .hm-svy-q__other input { width: 100%; background: #fff; border: 1px solid #dce9f3; border-radius: 6px; padding: 7px 10px; font-size: 12px; } .hm-svy-q__other input:focus { outline: none; border-color: #3498db; } /* ============ RESPONSIVE ============ */ @media(max-width:960px){ .hm-revs__wrap{flex-direction:column;} .hm-revs__left,.hm-revs__right{flex:none;width:100%;} } @media(max-width:640px){ .hm-svy-q__scale{flex-wrap:wrap;} }