/* ================================================================
   HOMEPAGE.CSS � DemoDrop Landing Page
   CSS verbatim da demo/combined.min.css + adattamenti tema.
   ================================================================ */

/* -- Open Sans (come la demo) -- */
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;600&display=swap');

/* ================================================================
   1. ADATTAMENTI TEMA
   Equivalenza:
     body.logged-out #module.index { padding-left:0 }
     body.logged-out #module.index #top-menu-placeholder { display:none }
     body.logged-out #module.index #content { position:static; max-width:100% }
   ================================================================ */
#page[data-page="home"] .ma_sidebar        { display: none !important; }
#page[data-page="home"] .ma_player        { display: none !important; }
#page[data-page="home"] #main-header      { display: none !important; }
#page[data-page="home"] #bar_loading      { display: none !important; }
#page[data-page="home"]                   { margin-left: 0 !important; padding-bottom: 0 !important; }
#page[data-page="home"] #container_content{ padding: 0 !important; max-width: 100% !important; position: relative; }

/* ================================================================
   2. RESET parziale dentro landing-page (dal CSS combinato demo)
   ================================================================ */
ul.landing-page,
ul.landing-page * { font-family: 'Open Sans','Avenir Next',Avenir,Arial,Helvetica,sans-serif; box-sizing: border-box; }
ul.landing-page ul, ul.landing-page ol { list-style: none; margin: 0; padding: 0; }
ul.landing-page p { margin-bottom: 10px; }
ul.landing-page strong, ul.landing-page .bold { font-weight: 600; }
ul.landing-page a { text-decoration: none; color: inherit; }
ul.landing-page img { max-width: 100%; }
ul.landing-page hr { border: none; border-top: 1px solid rgba(0,0,0,.1); padding: 0; margin: 10px 0; }
ul.landing-page .bg-dark hr, ul.landing-page hr.dark { border-top: 1px solid rgba(255,255,255,.1); border-bottom: none; }

/* ================================================================
   3. STRUTTURA LANDING PAGE � verbatim da combined.min.css
   ================================================================ */
ul.landing-page {
  position: relative;            /* #lp-slider si posiziona dentro questo */
  list-style: none;
  margin: 0; padding: 0;
  font-size: 14px; color: #333; line-height: 175%;
}
ul.landing-page h1, ul.landing-page h2, ul.landing-page h3, ul.landing-page h4 { line-height: 150%; }
ul.landing-page h1 { margin-bottom: 70px; }
ul.landing-page > li { position: relative; background-position: bottom center; background-size: cover; }
ul.landing-page > li h2 { font-size: 40px; }
ul.landing-page > li.bg-odd  { background-color: #f8f6e9; }
ul.landing-page > li.bg-dark { background-color: #1d1d1d; color: #fff; }
ul.landing-page > li.bg-dark a { color: #ccc; }
ul.landing-page > li.bg-dark a:hover { color: #fff; }
ul.landing-page .text-shadow { text-shadow: 0 0 3px rgba(0,0,0,1); }

/* ================================================================
   4. HERO SLIDER � #lp-slider (video background)
   Originale: position:absolute; width:100%; height:700px; left:0
   + .view-height che impone min-height:100vh
   ================================================================ */
#lp-slider {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 700px;               /* demo: 700px, sovrascritto da .view-height a 100vh */
  z-index: 0;
  background: #0c0c0c;        /* fallback se video non disponibile */
  overflow: hidden;
}

/* Video background � tecnica standard full-cover */
#bgvid {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: 100%;
  height: auto;
  z-index: -100;
  transform: translateX(-50%) translateY(-50%) scale(1.34);
  object-position: center 58%;
}

/* .view-height rende ogni li almeno 100vh */
.view-height { min-height: 100%; min-height: 100vh !important; }

/* ================================================================
   5. HERO OVERLAY � li.view-height.middle-gradient
   Sta sopra #lp-slider grazie alla posizione nel DOM
   ================================================================ */
.middle-gradient {
  background-color: rgba(0,0,0,.65);
  position: relative;          /* needed per bottom% degli assoluti interni */
  z-index: 1;
}

/* ================================================================
   6. TIPOGRAFIA GLOBALE LANDING � verbatim da combined.min.css
   ================================================================ */
ul.landing-page .h1, ul.landing-page h2.h1 { font-size: 300%; line-height: 110%; margin-bottom: 10px; }
ul.landing-page .h4, ul.landing-page h1.h4 { font-size: 170%; line-height: 110%; margin-bottom: 10px; }
h1 .detail, h2 .detail, h3 .detail { font-size: 12px; }
.bold, strong { font-weight: 600; }
.detail { color: #999; }
a.detail { color: #999 !important; }
.underline { text-decoration: underline; }
.underline-border { border-bottom: 1px solid; }
.underline-links a { text-decoration: underline; }
.bold-links a { font-weight: 600; }
.white { color: #fff !important; }
.black { color: #222 !important; }
.center  { text-align: center; }
.uppercase, .uc { text-transform: uppercase !important; }
.f12 { font-size: 12px !important; }
.f14 { font-size: 14px !important; }
.f15 { font-size: 15px !important; }
.f16 { font-size: 16px !important; }
.f40 { font-size: 40px; }

/* ================================================================
   7. LAYOUT UTILITIES � verbatim da combined.min.css
   ================================================================ */
.view-width { min-width: 990px; max-width: 1345px; margin: 0 auto; }
.w33p  { width: 33%;    box-sizing: border-box; }
.w50p  { width: 49.5%;  box-sizing: border-box; }
.w100p { width: 100%;   box-sizing: border-box; }
.h100  { height: 100px !important; }
.inline-block   { display: inline-block; }
.block          { display: block; }
.absolute       { position: absolute; }
.relative       { position: relative !important; }
.float-right, .pull-right { float: right; }
.float-left,  .pull-left  { float: left; }
.overflow-hidden { overflow: hidden; text-overflow: ellipsis; }
.overflow-auto   { overflow: auto; }
.overflow-visible{ overflow: visible !important; }
.pointer { cursor: pointer; }
.centered, .middle { margin: 0 auto; }
.bg-white { background-color: #fff !important; }
.bg-dark  { background-color: #1d1d1d; }
.bg-black { background-color: #000; }

/* ================================================================
   8. SPAZIATURA � verbatim da combined.min.css
   ================================================================ */
.p10  { padding: 10px; }
.p20  { padding: 20px !important; }
.p30  { padding: 30px; }
.p50  { padding: 50px; }
.p100 { padding: 100px; }

/* ================================================================
   9. PULSANTI � verbatim da combined.min.css
   ================================================================ */
ul.landing-page .button,
ul.landing-page .submit,
ul.landing-page button,
ul.landing-page input[type=button],
ul.landing-page input[type=reset],
ul.landing-page input[type=submit] {
  display: inline-block;
  border-radius: 2px;
  font-family: inherit;
  font-size: 12px;
  font-weight: 400;
  color: #333;
  background: linear-gradient(to bottom,rgba(255,255,255,1) 0,rgba(250,250,250,1) 100%);
  text-align: center;
  margin: 1px;
  cursor: pointer;
  padding: 5px 22px;
  line-height: 27px;
  border: 1px solid transparent;
}
ul.landing-page .button:active, ul.landing-page button:active { box-shadow: inset 1px 1px 4px -1px rgba(0,0,0,.4); }
ul.landing-page .button-big, ul.landing-page button.button-big { font-size: 13px; padding: 5px 30px; line-height: 27px; min-width: 27px; font-weight: 400; }
ul.landing-page .button-opaque, ul.landing-page button.button-opaque { background: rgba(0,0,0,.5); color: #eee; border-color: transparent; }
ul.landing-page .button-opaque:hover, ul.landing-page button.button-opaque:hover { background: rgba(0,0,0,.5); color: #fff; }
ul.landing-page .button-green, ul.landing-page button.button-green { background: #5a975c; color: #fff !important; border-color: transparent; }
ul.landing-page .button-green:hover, ul.landing-page button.button-green:hover { background: #4a874c; color: #fff !important; }
ul.landing-page .button-red, ul.landing-page button.button-red { background: #ff5a5f; color: #fff !important; border-color: transparent; }
ul.landing-page .button-red:hover, ul.landing-page button.button-red:hover { background: #e04a50; color: #fff !important; }
ul.landing-page .button-blue, ul.landing-page button.button-blue { background: #5890ff; color: #fff !important; border-color: transparent; }
ul.landing-page .button-blue:hover, ul.landing-page button.button-blue:hover { background: #3070e0; color: #fff !important; }
ul.landing-page .button-white, ul.landing-page button.button-white { border-color: #ccc; color: #333 !important; }
ul.landing-page .button-transparent, ul.landing-page button.button-transparent { background: none; color: #eee; border-color: transparent; }
ul.landing-page .button-transparent:hover, ul.landing-page button.button-transparent:hover { background: none; color: #fff; }
ul.landing-page a.button:hover { border-color: transparent; }
ul.landing-page .button-huge, ul.landing-page button.button-huge { font-size: 16px; padding: 0 40px; line-height: 45px; font-weight: 400; }
ul.landing-page .button-medium, ul.landing-page button.button-medium { font-size: 12px; padding: 3px 12px; line-height: 27px; min-width: 27px; font-weight: 300; }
ul.landing-page .button-small, ul.landing-page button.button-small { font-size: 11px; padding: 0 10px; line-height: 23px; min-width: 27px; font-weight: 300; }

/* ================================================================
   10. TABS � verbatim da combined.min.css
   ================================================================ */
ul.tabs {
  display: block; padding: 0; padding-top: 5px;
  color: #333; border-bottom: 3px solid rgba(255,255,255,.1);
  list-style: none;
}
ul.tabs > li { height: 41px; display: inline-block; }
ul.tabs > li > a { display: block; padding: 11px 10px; font-size: 13px; color: #ccc; cursor: pointer; text-decoration: none; }
ul.tabs > li > a.active { border-bottom: 3px solid #e30d7f; color: #fff; position: relative; font-weight: 600; }
ul.tabs > li > a:hover  { color: #eee; }
.bg-dark ul.tabs, ul.tabs.dark { border-bottom: 3px solid #333; }
.bg-dark ul.tabs > li > a.active, ul.tabs.dark > li > a.active { border-bottom: 3px solid #fff835; color: #eee; }
.bg-dark ul.tabs > li > a:hover,  ul.tabs.dark > li > a:hover  { color: #fff; }

/* Light tabs (sfondo bianco) � fix: testo DEVE restare scuro */
ul.tabs.light { border-bottom: 3px solid rgba(0,0,0,.1); }
ul.tabs.light > li > a { color: #333; }
ul.tabs.light > li > a.active { border-bottom: 3px solid #5890ff; color: #333 !important; font-weight: 600; }
ul.tabs.light > li > a:hover  { color: #333; }

ul.landing-page ul.tabs > li { height: 46px; }

/* Tab content: solo il primeiro div visibile di default */
.tab-content > div          { display: none; }
.tab-content > div:first-child,
.tab-content > div.active   { display: block; }

/* ================================================================
   11. INFO BLOCKS � verbatim da combined.min.css
   ================================================================ */
.info-blocks              { min-height: 400px; position: relative; }
.info-blocks .info-block  { display: none; position: relative; width: 330px; margin: 30px 30px 30px 100px; text-align: left; }
.info-blocks .info-title  { font-weight: 600; font-size: 15px; margin-bottom: 5px; }
.info-blocks .info-description { font-size: 14px; }
.info-blocks .fa-stack    { position: absolute; margin-left: -80px; }
.info-blocks .fa-stack-1x { text-shadow: 1px 1px 1px rgba(0,0,0,.2); }
.info-blocks .fa-stack-2x { font-size: 250%; margin-left: -3px; margin-top: -7px; color: #f8862c; }

/* Visibili di default (primo tab = sending) */
.info-blocks .info-block.show-for-sending { display: block; }

/* ================================================================
   12. ARTISTI � verbatim da combined.min.css
   ================================================================ */
ul.landing-page .artists-list { white-space: nowrap; height: 400px; transition: transform .3s ease-in-out; list-style: none; }
ul.landing-page .artists-list li { display: inline-block; width: 240px; margin: 5px 17px; height: 400px; font-weight: 600; font-size: 19px; text-align: center; vertical-align: top; }
ul.landing-page .artists-list li .artist-photo { display: block; width: 200px; height: 200px; padding: 20px; background-size: cover; box-shadow: 0 0 5px rgba(0,0,0,.3); border-radius: 50%; border: 5px solid #eee; }
ul.landing-page .artists-list li .logo         { max-width: 180px; max-height: 100px; padding: 20px; }
ul.landing-page .client-logos li              { display: inline-block; vertical-align: top; height: 100px; margin-right: 50px; }
ul.landing-page .client-logos img            { max-width: 200px; max-height: 100px; }

/* Carousel clip wrapper */
#artists-scroll-container { overflow: hidden; width: 1100px; margin: 0 auto; }

/* Dot navigator */
.carousel-dots li            { display: inline-block; margin: 4px; cursor: pointer; color: #aaa; font-size: 14px; }
.carousel-dots li:first-child { color: #5890ff; }

/* ================================================================
   13. LANDING FOOTER � verbatim da combined.min.css
   ================================================================ */
#landing-footer             { text-align: center; padding-top: 50px; color: #ccc; }
#landing-footer ul          { text-align: left; font-size: 12px; display: inline-block; width: 150px; height: 200px; vertical-align: top; }
#landing-footer .bold       { color: #fff; }
#landing-footer a           { color: #aaa; text-decoration: none; }
#landing-footer a:hover, #social-footer a:hover { color: #fff; }

/* ================================================================
   14. ANIMAZIONI � verbatim da combined.min.css
   ================================================================ */
.animated { -webkit-animation-duration:1s; animation-duration:1s; -webkit-animation-fill-mode:both; animation-fill-mode:both; }
.animated.slow    { -webkit-animation-duration:4s; animation-duration:4s; }
.animated.hinge   { -webkit-animation-duration:2s; animation-duration:2s; }
.animated.infinite{ -webkit-animation-iteration-count:infinite; animation-iteration-count:infinite; }
.bounce   { -webkit-animation-name:bounce;    animation-name:bounce;    -webkit-transform-origin:center bottom; transform-origin:center bottom; }
.bounceInUp{ -webkit-animation-name:bounceInUp; animation-name:bounceInUp; }

@keyframes bounce {
  0%,20%,53%,80%,100%{ animation-timing-function:cubic-bezier(.215,.61,.355,1); transform:translate3d(0,0,0); }
  40%,43%{ animation-timing-function:cubic-bezier(.755,.05,.855,.06); transform:translate3d(0,-30px,0); }
  70%    { animation-timing-function:cubic-bezier(.755,.05,.855,.06); transform:translate3d(0,-15px,0); }
  90%    { transform:translate3d(0,-4px,0); }
}
@-webkit-keyframes bounce {
  0%,20%,53%,80%,100%{ -webkit-transform:translate3d(0,0,0); }
  40%,43%{ -webkit-transform:translate3d(0,-30px,0); }
  70%    { -webkit-transform:translate3d(0,-15px,0); }
  90%    { -webkit-transform:translate3d(0,-4px,0); }
}
@keyframes bounceInUp {
  0%    { opacity:0; transform:translate3d(0,2000px,0); }
  60%   { opacity:1; transform:translate3d(0,-20px,0); }
  75%   { transform:translate3d(0,10px,0); }
  90%   { transform:translate3d(0,-5px,0); }
  100%  { transform:translateZ(0); }
}

/* ================================================================
   15. HIDE-ON-HANDHELD (solo su desktop sono visibili le sezioni)
   Qui NON si nasconde (reso visibile su desktop =768px)
   ================================================================ */
@media (min-width: 769px) {
  .show-on-handheld { display: none !important; }
}

/* ================================================================
   16. RESPONSIVE MOBILE � verbatim/adattato da combined.min.css
   ================================================================ */
@media (max-width: 768px) {
  .hide-on-handheld { display: none !important; }
  .w33p, .w50p      { width: 100% !important; }
  .p20  { padding: 5px !important; }
  .p30, .p50 { padding: 10px !important; }
  ul.tabs { display: none !important; }
  .view-width { min-width: 0 !important; max-width: 100% !important; width: 100% !important; padding: 0 15px; box-sizing: border-box; }
  ul.landing-page .artists-list { white-space: normal; height: auto; }
  ul.landing-page .artists-list li { display: inline-block; width: calc(50% - 40px); height: auto; }
  #artists-scroll-container { width: 100% !important; }
  #landing-footer { padding-top: 20px; }
}

/* ================================================================
   17. HEADING GLOBALI � verbatim da combined.min.css
   Scoped a landing-page per non interferire con il tema
   ================================================================ */
ul.landing-page .h2, ul.landing-page h2 { font-size: 250%; line-height: 110%; margin-bottom: 10px; }
ul.landing-page .h3, ul.landing-page h3 { font-size: 200%; line-height: 110%; margin-bottom: 10px; }
ul.landing-page .h4, ul.landing-page h4 { font-size: 170%; line-height: 110%; margin-bottom: 10px; }

/* ================================================================
   18. COLORI UTILITY � verbatim da combined.min.css
   ================================================================ */
.green  { color: #83c722 !important; }
.blue   { color: #0b86dc !important; }
.red    { color: #fd4100 !important; }
.orange { color: #b7622d !important; }
.fa.green { color: #83c722 !important; }

/* ================================================================
   19. CLEAR � verbatim da combined.min.css
   ================================================================ */
.clear       { clear: both; }
.clear-left  { clear: left; }
.clear-right { clear: right; }

/* ================================================================
   20. BUTTON GLOBALE + VARIANTI EXTRA � verbatim da combined.min.css
   Overrides scoped agli elementi dentro landing-page (sezione 9)
   ================================================================ */
.button, .submit, button,
input[type=button], input[type=reset], input[type=submit] {
  display: inline-block;
  background: #fff none;
  border-radius: 2px;
  font-family: 'Open Sans','Avenir Next',Avenir,Arial,Helvetica,sans-serif;
  font-size: 12px;
  font-weight: 400;
  color: #333;
  background: linear-gradient(to bottom, rgba(255,255,255,1) 0, rgba(250,250,250,1) 100%);
  text-align: center;
  margin: 1px;
  cursor: pointer;
  padding: 5px 22px;
  line-height: 27px;
  border: 1px solid;
  border-color: transparent;
}
.button:active, .submit:active, button:active,
input[type=button]:active, input[type=reset]:active, input[type=submit]:active {
  box-shadow: inset 1px 1px 4px -1px rgba(0,0,0,.4);
}
.button-disabled,
.button:disabled, .submit:disabled, button:disabled,
input[type=button]:disabled, input[type=reset]:disabled, input[type=submit]:disabled {
  opacity: .8;
  cursor: default;
}
.button-tiny { font-size: 10px; padding: 0 6px; line-height: 15px; vertical-align: middle; border-radius: 1px; }
.button-group .button, .button-group button { margin-right: -3px; border-radius: 0; }
.button-group > .button:first-child, .button-group > button:first-child { border-top-left-radius: 3px; border-bottom-left-radius: 3px; }
.button-group > .button:last-child,  .button-group > button:last-child  { border-top-right-radius: 3px; border-bottom-right-radius: 3px; }
.button-cancel, button[type=reset], input[type=reset] { font-weight: 300; }
.button-white:hover       { color: #333; }
.button-white.active      { background: #535864; color: #fff !important; border-color: #333; }
.button-black             { background: #222; color: #fff !important; }
.button-orange            { color: #fff; background-color: rgba(253,175,58,.2); }
.button.twitter           { background: #55a7e6; border-color: #55a7e6; color: #fff; }
.button.facebook          { background: #3b5998; color: #fff; border-color: #3b5998; }
.button.vk                { background: #47729d; color: #fff; border-color: #47729d; }
.button.google            { background: #dd4b39; border-color: #dd4b39; color: #fff; }
.button.soundcloud, button.soundcloud { background: #fa8619; color: #fff; border-color: #fa8619; }
.button.spotify,   button.spotify    { background: #00c14a; color: #fff; border-color: #00c14a; }
.button.rounded,   button.rounded    { border-radius: 25px; }
a.button:hover { border-color: transparent; }

/* ================================================================
   21. TABS � BADGE CONTATORI � verbatim da combined.min.css
   ================================================================ */
ul.tabs > li .cnt                      { display: inline-block; margin-left: 5px; background-color: rgba(0,0,0,.2); padding: 0 5px; border-radius: 3px; color: #fff; }
ul.tabs > li .cnt.new                  { background-color: #f03d25; color: #fff; }
ul.tabs > li a[data-count]:after       { content: attr(data-count); background-color: rgba(0,0,0,.1); border-radius: 2px; color: #aaa; font-size: 90%; padding: 2px 5px; line-height: normal; margin-left: 4px; }
ul.tabs > li a[data-count=""]:after,
ul.tabs > li a[data-count="0"]:after   { display: none; }
ul.tabs > li a[data-new]:after         { color: #fff; background-color: #f03d25; }

/* ================================================================
   22. LINK STILI � verbatim da combined.min.css
   ================================================================ */
.detail a          { border-bottom-color: #999 !important; }
.blue-links a      { color: #3b5998; font-weight: 600; }
.blue-links a:hover{ text-decoration: underline; }

/* ================================================================
   23. HOVER UTILITIES � verbatim da combined.min.css
   ================================================================ */
.block-on-hover, .inline-block-on-hover              { display: none; }
.hover-area:hover .block-on-hover                    { display: block; }
.hover-area:hover .inline-block-on-hover             { display: inline-block; }

/* ================================================================
   24. PRELOADER / PULSE � verbatim da combined.min.css
   ================================================================ */
.empty-result-row .preloader-block {
  color: transparent;
  background-color: rgba(255,255,255,.3);
  border-radius: 3px;
  opacity: 1;
  animation: pulse 2s infinite alternate;
  background-image: none;
}
.empty-result-row .preloader-block * { visibility: hidden; }

@keyframes pulse {
  from { background-color: rgba(255,255,255,.3); }
  to   { background-color: rgba(255,255,255,.1); }
}

/* ================================================================
   25. KEYFRAMES BOUNCE/BOUNCEINUP COMPLETI � verbatim combined.min.css
   ================================================================ */
@keyframes bounce {
  0%, 100%, 20%, 53%, 80% { transition-timing-function: cubic-bezier(.215,.61,.355,1); -webkit-transform: translate3d(0,0,0); transform: translate3d(0,0,0); }
  40%, 43% { transition-timing-function: cubic-bezier(.755,.05,.855,.06); -webkit-transform: translate3d(0,-30px,0); transform: translate3d(0,-30px,0); }
  70% { transition-timing-function: cubic-bezier(.755,.05,.855,.06); -webkit-transform: translate3d(0,-15px,0); transform: translate3d(0,-15px,0); }
  90% { -webkit-transform: translate3d(0,-4px,0); transform: translate3d(0,-4px,0); }
}
@keyframes bounceInUp {
  0%, 100%, 60%, 75%, 90% { -webkit-animation-timing-function: cubic-bezier(.215,.61,.355,1); animation-timing-function: cubic-bezier(.215,.61,.355,1); }
  0%  { opacity: 0; -webkit-transform: translate3d(0,3000px,0); transform: translate3d(0,3000px,0); }
  60% { opacity: 1; -webkit-transform: translate3d(0,-20px,0); transform: translate3d(0,-20px,0); }
  75% { -webkit-transform: translate3d(0,10px,0); transform: translate3d(0,10px,0); }
  90% { -webkit-transform: translate3d(0,-5px,0); transform: translate3d(0,-5px,0); }
  100%{ -webkit-transform: translate3d(0,0,0); transform: translate3d(0,0,0); }
}

/* ================================================================
   26. LIKE/DISLIKE BUTTON STATES � verbatim da combined.min.css
   ================================================================ */
.button-like                              { display: inline-block !important; }
.button-disliked, .button-liked           { display: none !important; }
.button-dislike                           { display: inline-block !important; }
.is-liked    .button-liked                { display: inline-block !important; }
.is-disliked .button-disliked             { display: inline-block !important; }
.is-disliked .button-dislike,
.is-liked    .button-like                 { display: none !important; }

/* ================================================================
   27. RIBBON � verbatim da combined.min.css
   ================================================================ */
.ribbon {
  font: bold 15px Sans-Serif; color: #333; text-align: center;
  text-shadow: rgba(255,255,255,.5) 0 1px 0;
  -webkit-transform: rotate(45deg); transform: rotate(45deg);
  position: relative; padding: 7px 0; left: -5px; top: 15px;
  width: 120px; background-color: #bfdc7a;
  background-image: linear-gradient(top, #bfdc7a, #8ebf45);
  color: #6a6340;
  box-shadow: 0 0 3px rgba(0,0,0,.3);
}

/* ================================================================
   28. SHOW-ON-HANDHELD DESKTOP FIX
   ================================================================ */
.show-on-handheld { display: none; }

/* ================================================================
   29. HOMEPAGE RESPONSIVE HARDENING
   ================================================================ */
#page[data-page="home"],
#page[data-page="home"] #container_content,
ul.landing-page {
  max-width: 100%;
  overflow-x: clip;
}

ul.landing-page,
ul.landing-page > li {
  width: 100%;
}

ul.landing-page .view-width {
  width: min(100%, 1345px);
  min-width: 0;
  max-width: 1345px;
  padding-left: 0;
  padding-right: 0;
}

ul.landing-page > li:not(#lp-slider) {
  overflow: hidden;
}

ul.landing-page .dd-home-desktop-only {
  display: block;
}

ul.landing-page .dd-hero-headline,
ul.landing-page .dd-hero-actions {
  left: 50%;
  width: min(100%, 980px);
  padding: 0 clamp(16px, 5vw, 40px);
  transform: translateX(-50%);
}

ul.landing-page .dd-hero-headline h2 {
  font-size: clamp(30px, 6vw, 56px);
  overflow-wrap: anywhere;
}

ul.landing-page .dd-hero-headline h1,
ul.landing-page .dd-hero-headline .h4 {
  color: rgba(255,255,255,.82);
  font-size: clamp(16px, 3vw, 28px);
  margin-bottom: 0;
}

ul.landing-page .dd-hero-actions .version-1 {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

ul.landing-page .dd-hero-actions .version-1 > button {
  margin: 0;
}

ul.landing-page .dd-hero-stats {
  display: grid !important;
  gap: 18px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  padding: 0 clamp(16px, 5vw, 40px);
}

ul.landing-page .dd-hero-stat {
  height: auto !important;
  min-width: 0;
  width: 100% !important;
}

ul.landing-page .dd-hero-stat .f40 {
  font-size: clamp(24px, 4vw, 40px);
}

ul.landing-page .dd-hero-stat .f16 {
  font-size: clamp(13px, 2.2vw, 16px) !important;
}

ul.landing-page #lp-features .p50,
ul.landing-page > li.bg-white > .view-width > .center.p50 {
  padding: 50px !important;
}

ul.landing-page ul.tabs.light {
  align-items: stretch;
  display: flex !important;
  flex-wrap: wrap;
  gap: 0;
}

ul.landing-page ul.tabs.light > li {
  flex: 1 1 180px;
  height: auto;
}

ul.landing-page ul.tabs.light > li > a {
  height: 100%;
  line-height: 1.35;
  min-height: 46px;
  text-align: center;
}

ul.landing-page .tab-content {
  border-radius: 4px;
  margin-top: 18px;
  min-height: 330px;
  overflow: hidden;
  padding: 24px !important;
  position: relative;
  text-align: left;
}

ul.landing-page .tab-content > div {
  max-width: min(46%, 480px);
}

ul.landing-page .tab-content > div > div {
  max-width: none;
  width: 620px;
  right: -35px !important;
  top: 165px !important;
}

ul.landing-page .tab-content img {
  border-radius: 4px;
  display: block;
  height: auto;
  max-height: none;
  object-fit: contain;
  width: 100%;
}

ul.landing-page .info-blocks {
  display: grid;
  gap: 0 28px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  min-height: 0;
  width: 100%;
}

ul.landing-page .info-blocks .info-block {
  margin: 24px 0;
  max-width: 100%;
  width: 100%;
}

ul.landing-page #artists-scroll-container {
  max-width: 100%;
  width: 100% !important;
}

ul.landing-page .artists-list {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  height: auto;
  transform: none !important;
  white-space: normal;
}

ul.landing-page .artists-list li {
  align-items: center;
  display: flex;
  flex-direction: column;
  font-size: 16px;
  height: auto;
  margin: 0;
  min-width: 0;
  width: 100%;
}

ul.landing-page .artists-list li .artist-photo {
  aspect-ratio: 1;
  height: auto;
  max-width: 180px;
  padding: 0;
  width: min(100%, 180px);
}

ul.landing-page .client-logos {
  align-items: center;
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
  justify-items: center;
}

ul.landing-page .client-logos li {
  height: auto;
  margin: 0;
  max-width: 190px;
  width: 100%;
}

ul.landing-page .client-logos img {
  height: auto;
  max-height: 82px;
  object-fit: contain;
  width: 100%;
}

#landing-footer {
  line-height: 1.9;
  padding: 28px clamp(16px, 4vw, 40px) 36px;
}

@media (max-width: 900px) {
  ul.landing-page .dd-hero-stats {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  ul.landing-page .tab-content > div {
    max-width: 100%;
  }

  ul.landing-page .tab-content > div > div {
    margin: 20px auto 0;
    max-width: 620px;
    position: static !important;
    transform: none;
  }

  ul.landing-page .info-blocks {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  ul.landing-page .hide-on-handheld {
    display: none !important;
  }

  ul.landing-page .dd-home-desktop-only {
    display: none !important;
  }

  ul.landing-page .view-height {
    min-height: 100svh !important;
  }

  ul.landing-page .dd-hero-headline {
    top: 12%;
  }

  ul.landing-page .dd-hero-actions {
    top: 40%;
  }

  ul.landing-page .dd-hero-actions .white.center {
    font-size: 12px !important;
    line-height: 1.4;
    margin-top: 4px;
  }

  ul.landing-page .dd-hero-stats {
    bottom: 5% !important;
    grid-template-columns: 1fr;
    gap: 12px;
  }

  ul.landing-page .dd-hero-stat .detail {
    display: none;
  }

  ul.landing-page .button-big,
  ul.landing-page button.button-big {
    line-height: 24px;
    padding: 7px 18px;
  }

  ul.landing-page .tab-content {
    min-height: 0;
    padding: 18px !important;
    text-align: center;
  }

  ul.landing-page .info-blocks .info-block {
    grid-template-columns: 48px minmax(0, 1fr);
  }

  ul.landing-page .dd-home-icon {
    height: 48px;
    width: 48px;
  }

  ul.landing-page .dd-home-icon svg {
    height: 24px;
    width: 24px;
  }
}

@media (max-width: 480px) {
  ul.landing-page .view-width {
    padding-left: 14px;
    padding-right: 14px;
  }

  ul.landing-page .dd-hero-headline {
    top: 9%;
  }

  ul.landing-page .dd-hero-actions {
    top: 38%;
  }

  ul.landing-page .dd-hero-actions .version-1 {
    flex-direction: column;
    gap: 10px;
  }

  ul.landing-page .dd-hero-actions .version-1 > button {
    max-width: 280px;
    width: 100%;
  }

  ul.landing-page .dd-hero-stats {
    bottom: 4% !important;
  }

  ul.landing-page .artists-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  ul.landing-page .artists-list li .artist-photo {
    width: min(100%, 132px);
  }
}

@media (max-width: 360px) {
  ul.landing-page .dd-hero-headline h2 {
    font-size: 27px;
  }

  ul.landing-page .dd-hero-stats {
    gap: 8px;
  }

  ul.landing-page .dd-hero-stat .f40 {
    font-size: 22px;
  }

  ul.landing-page .dd-hero-stat .f16 {
    font-size: 12px !important;
  }
}

@media (min-width: 601px) and (max-width: 768px) {
  ul.landing-page .dd-hero-stats {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    bottom: 8% !important;
  }

  ul.landing-page .dd-hero-stat .detail {
    display: inline;
  }
}

/* ================================================================
   30. RESTORE ORIGINAL LAYOUT, RESPONSIVE ONLY WHERE NEEDED
   ================================================================ */
@media (min-width: 769px) {
  ul.landing-page .view-width {
    max-width: 1345px;
    min-width: 990px;
    padding-left: 0;
    padding-right: 0;
    width: 100%;
  }

  ul.landing-page .dd-hero-headline,
  ul.landing-page .dd-hero-actions {
    left: 0;
    padding: 0;
    transform: none;
    width: 100%;
  }

  ul.landing-page .dd-hero-headline h2 {
    font-size: 300%;
  }

  ul.landing-page .dd-hero-headline h1,
  ul.landing-page .dd-hero-headline .h4 {
    font-size: 170%;
  }

  ul.landing-page .dd-hero-actions .version-1 {
    display: block;
  }

  ul.landing-page .dd-hero-stats {
    display: flex !important;
    gap: 0;
    grid-template-columns: none;
    padding: 0;
  }

  ul.landing-page .dd-hero-stat {
    width: 33% !important;
  }

  ul.landing-page .tab-content {
    margin-top: 0;
    min-height: 0;
    overflow: visible;
    padding: 10px !important;
    text-align: center;
  }

  ul.landing-page .tab-content > div {
    max-width: none;
  }

  ul.landing-page .tab-content > div > div {
    margin: 0;
    max-width: none;
    position: absolute !important;
    right: -35px !important;
    top: 165px !important;
    transform: none;
  }

  ul.landing-page .tab-content img {
    border-radius: 0;
    max-height: none;
    width: 100%;
  }

  ul.landing-page .info-blocks {
    display: block;
    margin-top: 30px;
    min-height: 400px;
    text-align: left;
    width: 420px;
  }

  ul.landing-page .info-blocks .info-block {
    margin: 28px 0;
    max-width: none;
    width: 100%;
  }

  ul.landing-page #artists-scroll-container {
    max-width: none;
    width: 1100px !important;
  }

  ul.landing-page .artists-list {
    display: block;
    height: 400px;
    transform: none;
    white-space: nowrap;
  }

  ul.landing-page .artists-list li {
    display: inline-block;
    flex-direction: initial;
    font-size: 19px;
    height: 400px;
    margin: 5px 17px;
    width: 240px;
  }

  ul.landing-page .artists-list li .artist-photo {
    aspect-ratio: auto;
    height: 200px;
    max-width: none;
    padding: 20px;
    width: 200px;
  }

  ul.landing-page .client-logos {
    display: block;
  }

  ul.landing-page .client-logos li {
    display: inline-block;
    height: 100px;
    margin-right: 50px;
    max-width: none;
    width: auto;
  }

  ul.landing-page .client-logos img {
    max-height: 100px;
    max-width: 200px;
    width: auto;
  }

  #landing-footer {
    padding: 50px 0 0;
  }
}

@media (max-width: 768px) {
  ul.landing-page .hide-on-handheld {
    display: none !important;
  }

  ul.landing-page .view-width {
    min-width: 0 !important;
    width: 100% !important;
  }

  ul.landing-page .dd-hero-actions .version-1 {
    display: block;
  }

  ul.landing-page .dd-hero-stats {
    grid-template-columns: 1fr;
  }

  ul.landing-page .tab-content > div > div {
    max-width: 100%;
  }

  ul.landing-page #artists-scroll-container {
    overflow: hidden;
  }
}

@media (min-width: 769px) and (max-width: 1180px) {
  ul.landing-page #artists-scroll-container {
    width: 100% !important;
  }
}

/* ================================================================
   31. EXACT ORIGINAL DEMODROP FEATURES SECTION
   ================================================================ */
#lp-features .view-width {
  min-width: 990px !important;
  max-width: 1345px !important;
  width: auto !important;
  margin: 0 auto !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
}

#lp-features .p50 {
  padding: 50px !important;
}

#lp-features ul.tabs {
  display: block !important;
  padding: 5px 0 0 !important;
  color: #333 !important;
  border-bottom: 3px solid rgba(0,0,0,.1) !important;
}

#lp-features ul.tabs > li {
  display: inline-block !important;
  height: 46px !important;
  flex: none !important;
}

#lp-features ul.tabs > li > a {
  display: block !important;
  padding: 11px 10px !important;
  color: #333 !important;
  min-height: 0 !important;
  height: auto !important;
  line-height: normal !important;
  text-align: left !important;
}

#lp-features ul.tabs > li > a.active {
  border-bottom: 3px solid #e30d7f !important;
  color: #333 !important;
  position: relative !important;
  font-weight: 600 !important;
}

#lp-features .tab-content {
  background-color: #f9f9f9 !important;
  border-radius: 0 !important;
  margin-top: 0 !important;
  min-height: 0 !important;
  overflow: visible !important;
  padding: 10px !important;
  position: relative !important;
  text-align: center !important;
}

#lp-features .tab-content > div {
  display: none;
  max-width: none !important;
}

#lp-features .tab-content > div:first-child,
#lp-features .tab-content > div.active {
  display: block;
}

#lp-features .tab-content > div > div {
  margin: 0 !important;
  max-width: none !important;
  width: auto !important;
  position: absolute !important;
  right: 100px !important;
  top: 100px !important;
  transform: none !important;
}

#lp-features .tab-content img {
  border-radius: 0 !important;
  display: inline !important;
  height: auto !important;
  max-height: none !important;
  max-width: none !important;
  object-fit: initial !important;
  width: auto !important;
}

#lp-features .info-blocks {
  display: block !important;
  min-height: 400px !important;
  margin-top: 0 !important;
  position: relative !important;
  text-align: left !important;
  width: auto !important;
}

#lp-features .info-blocks .info-block {
  display: none;
  position: relative !important;
  width: 330px !important;
  max-width: none !important;
  margin: 30px 30px 30px 100px !important;
  text-align: left !important;
}

#lp-features .info-blocks .info-block.show-for-sending {
  display: block;
}

#lp-features .info-blocks .info-title {
  font-weight: 600 !important;
  font-size: 15px !important;
  margin-bottom: 5px !important;
}

#lp-features .info-blocks .info-description {
  font-size: 14px !important;
}


#lp-features .fa {
  display: inline-block;
  font: normal normal 900 14px/1 "Font Awesome 6 Free";
  font-size: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
#lp-features .fa-lg { font-size: 1.33333333em; line-height: .75em; vertical-align: -15%; }
#lp-features .fa-2x { font-size: 2em; }
#lp-features .fa-stack { position: relative; display: inline-block; width: 2em; height: 2em; line-height: 2em; vertical-align: middle; }
#lp-features .fa-stack-1x,
#lp-features .fa-stack-2x { position: absolute; left: 0; width: 100%; text-align: center; }
#lp-features .fa-stack-1x { line-height: inherit; }
#lp-features .fa-stack-2x { font-size: 2em; }
#lp-features .fa-inverse { color: #fff; }
#lp-features .fa-inbox:before { content: "\f01c"; }
#lp-features .fa-ban:before { content: "\f05e"; }
#lp-features .fa-bar-chart:before { content: "\f080"; }
#lp-features .fa-comments:before { content: "\f086"; }
#lp-features .fa-trophy:before { content: "\f091"; }
#lp-features .fa-group:before { content: "\f0c0"; }
#lp-features .fa-list-ol:before { content: "\f0cb"; }
#lp-features .fa-cloud-upload:before { content: "\f0ee"; }
#lp-features .fa-circle:before { content: "\f111"; }
#lp-features .fa-star-half-o:before { content: "\f123"; }
#lp-features .fa-thumbs-up:before { content: "\f164"; }
#lp-features .fa-send:before { content: "\f1d8"; }
#lp-features .info-blocks .fa-stack {
  position: absolute !important;
  margin-left: -80px !important;
}

#lp-features .info-blocks .fa-stack-1x {
  text-shadow: 1px 1px 1px rgba(0,0,0,.2) !important;
}

#lp-features .info-blocks .fa-stack-2x {
  font-size: 250% !important;
  margin-left: -3px !important;
  margin-top: -7px !important;
  color: #f8862c !important;
}

@media (max-width: 600px) {
  #lp-features.hide-on-handheld {
    display: none !important;
  }
}

/* Font-independent feature icons */
#lp-features .info-blocks .fa-stack {
  width: 56px !important;
  height: 56px !important;
  line-height: 56px !important;
}
#lp-features .info-blocks .fa-circle:before {
  content: "" !important;
  position: absolute;
  left: 0;
  top: 0;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #f8862c;
}
#lp-features .info-blocks .fa-stack-1x:before {
  content: "" !important;
  display: block;
  width: 24px;
  height: 24px;
  margin: 16px;
  background: #fff;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-size: contain;
  mask-size: contain;
}
#lp-features .fa-send:before { -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M21 3 10.5 20l-2-7.5L3 9.8 21 3Z'/%3E%3Cpath d='M8.5 12.5 21 3'/%3E%3C/svg%3E"); mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M21 3 10.5 20l-2-7.5L3 9.8 21 3Z'/%3E%3Cpath d='M8.5 12.5 21 3'/%3E%3C/svg%3E"); }
#lp-features .fa-bar-chart:before { -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 20h16'/%3E%3Cpath d='M6.5 16v-4'/%3E%3Cpath d='M12 16V7'/%3E%3Cpath d='M17.5 16v-7'/%3E%3C/svg%3E"); mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 20h16'/%3E%3Cpath d='M6.5 16v-4'/%3E%3Cpath d='M12 16V7'/%3E%3Cpath d='M17.5 16v-7'/%3E%3C/svg%3E"); }
#lp-features .fa-thumbs-up:before { -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='black'%3E%3Cpath d='M7.5 20H4.2V10.5h3.3V20Zm1.8-8.8L12 4l.6.1c1.4.4 2.1 1.8 1.7 3.1l-.7 2.1h4.7a2 2 0 0 1 2 2.4l-1.2 6.5a2.2 2.2 0 0 1-2.2 1.8H9.3v-8.8Z'/%3E%3C/svg%3E"); mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='black'%3E%3Cpath d='M7.5 20H4.2V10.5h3.3V20Zm1.8-8.8L12 4l.6.1c1.4.4 2.1 1.8 1.7 3.1l-.7 2.1h4.7a2 2 0 0 1 2 2.4l-1.2 6.5a2.2 2.2 0 0 1-2.2 1.8H9.3v-8.8Z'/%3E%3C/svg%3E"); }
#lp-features .fa-inbox:before { -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.5' stroke-linejoin='round'%3E%3Cpath d='M4.5 6.5h15l2 7v4.5a2 2 0 0 1-2 2h-15a2 2 0 0 1-2-2v-4.5l2-7Z'/%3E%3Cpath d='M3 13.5h5.2l1.4 2.3h4.8l1.4-2.3H21'/%3E%3C/svg%3E"); mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.5' stroke-linejoin='round'%3E%3Cpath d='M4.5 6.5h15l2 7v4.5a2 2 0 0 1-2 2h-15a2 2 0 0 1-2-2v-4.5l2-7Z'/%3E%3Cpath d='M3 13.5h5.2l1.4 2.3h4.8l1.4-2.3H21'/%3E%3C/svg%3E"); }
#lp-features .fa-cloud-upload:before { -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M7 17.5H6.4a4.4 4.4 0 0 1-.7-8.7 6.1 6.1 0 0 1 11.7-1.6 4.8 4.8 0 0 1 .5 9.5H17'/%3E%3Cpath d='M12 12.5v7'/%3E%3Cpath d='m8.8 15.5 3.2-3.2 3.2 3.2'/%3E%3C/svg%3E"); mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M7 17.5H6.4a4.4 4.4 0 0 1-.7-8.7 6.1 6.1 0 0 1 11.7-1.6 4.8 4.8 0 0 1 .5 9.5H17'/%3E%3Cpath d='M12 12.5v7'/%3E%3Cpath d='m8.8 15.5 3.2-3.2 3.2 3.2'/%3E%3C/svg%3E"); }
#lp-features .fa-list-ol:before { -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.5' stroke-linecap='round'%3E%3Cpath d='M10 6h10M10 12h10M10 18h10M4.5 6h1M4 11.2h1.3V14M4 17.4h1.7c.8 0 .8 1.2 0 1.2H4.2l1.8 1.8'/%3E%3C/svg%3E"); mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.5' stroke-linecap='round'%3E%3Cpath d='M10 6h10M10 12h10M10 18h10M4.5 6h1M4 11.2h1.3V14M4 17.4h1.7c.8 0 .8 1.2 0 1.2H4.2l1.8 1.8'/%3E%3C/svg%3E"); }
#lp-features .fa-group:before,
#lp-features .fa-comments:before,
#lp-features .fa-trophy:before,
#lp-features .fa-star-half-o:before,
#lp-features .fa-ban:before { -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='black'%3E%3Ccircle cx='12' cy='12' r='8'/%3E%3C/svg%3E"); mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='black'%3E%3Ccircle cx='12' cy='12' r='8'/%3E%3C/svg%3E"); }

/* ================================================================
   30. DYNAMIC ARTISTS GRID SHOWCASE SYSTEM
   ================================================================ */
.artists-grid-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 0;
}

.artists-grid-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.artists-grid-list li {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: transform 0.3s ease;
}

.artists-grid-list li:hover {
  transform: translateY(-8px);
}

.artist-grid-photo {
  display: block;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background-size: cover;
  background-position: center;
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
  border: 6px solid #fff;
  transition: all 0.3s ease;
  aspect-ratio: 1 / 1;
}

.artists-grid-list li:hover .artist-grid-photo {
  box-shadow: 0 12px 30px rgba(88, 144, 255, 0.3);
  border-color: #5890ff;
}

.artist-grid-brand {
  text-decoration: none;
  margin-top: 20px;
  display: block;
  width: 100%;
  max-width: 220px;
}

.artist-grid-name {
  display: block;
  font-family: 'Open Sans', sans-serif;
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #111;
  border: 2px solid #111;
  padding: 8px 16px;
  background-color: transparent;
  transition: all 0.3s ease;
  word-wrap: break-word;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.artists-grid-list li:hover .artist-grid-name {
  background-color: #111;
  color: #fff;
}

/* Responsive Grid Breakpoints */
@media (max-width: 1024px) {
  .artists-grid-list {
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
  }
  .artist-grid-photo {
    width: 180px;
    height: 180px;
  }
}

@media (max-width: 768px) {
  .artists-grid-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
  .artist-grid-photo {
    width: 160px;
    height: 160px;
  }
  .artist-grid-name {
    font-size: 12px;
    padding: 6px 12px;
    letter-spacing: 1px;
  }
}

@media (max-width: 480px) {
  .artists-grid-list {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .artist-grid-photo {
    width: 200px;
    height: 200px;
  }
}

/* Responsive landing sections: artists grid + feature tabs */
@media (max-width: 1024px) {
  ul.landing-page > li.bg-white > .view-width,
  ul.landing-page #lp-features .view-width,
  #lp-features .view-width {
    min-width: 0 !important;
    max-width: 100% !important;
    width: 100% !important;
    padding-left: 24px !important;
    padding-right: 24px !important;
    box-sizing: border-box !important;
  }

  ul.landing-page > li.bg-white > .view-width > .center.p50,
  ul.landing-page #lp-features .p50,
  #lp-features .p50 {
    padding: 36px 0 !important;
  }

  .artists-grid-container {
    max-width: 100%;
    overflow: hidden;
  }

  .artists-grid-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 32px 24px;
  }

  .artist-grid-photo {
    width: min(100%, 180px);
    height: auto;
  }

  #lp-features.hide-on-handheld {
    display: block !important;
  }

  #lp-features ul.tabs {
    display: flex !important;
    flex-wrap: wrap !important;
    justify-content: center !important;
  }

  #lp-features ul.tabs > li {
    flex: 1 1 190px !important;
    height: auto !important;
  }

  #lp-features ul.tabs > li > a {
    min-height: 46px !important;
    text-align: center !important;
  }

  #lp-features .tab-content {
    overflow: hidden !important;
    text-align: center !important;
  }

  #lp-features .tab-content > div > div {
    margin: 22px auto 0 !important;
    max-width: 620px !important;
    position: static !important;
    right: auto !important;
    top: auto !important;
    width: 100% !important;
  }

  #lp-features .tab-content img {
    display: block !important;
    height: auto !important;
    max-width: 100% !important;
    object-fit: contain !important;
    width: 100% !important;
  }

  #lp-features .info-blocks {
    min-height: 0 !important;
    padding-top: 20px !important;
  }

  #lp-features .info-blocks .info-block {
    margin: 22px auto !important;
    max-width: 560px !important;
    padding-left: 78px !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }
}

@media (max-width: 768px) {
  ul.landing-page > li.bg-white > .view-width,
  ul.landing-page #lp-features .view-width,
  #lp-features .view-width {
    padding-left: 16px !important;
    padding-right: 16px !important;
  }

  .artists-grid-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px 18px;
  }

  .artist-grid-photo {
    width: min(100%, 150px);
  }

  .artist-grid-brand {
    max-width: 180px;
  }

  .artist-grid-name {
    white-space: normal;
  }

  #lp-features ul.tabs > li {
    flex-basis: 100% !important;
  }

  #lp-features .info-blocks .info-block {
    text-align: left !important;
  }
}

@media (max-width: 480px) {
  .artists-grid-list {
    grid-template-columns: 1fr;
  }

  .artist-grid-photo {
    width: min(100%, 190px);
  }

  #lp-features .info-blocks .info-block {
    padding-left: 0 !important;
    text-align: center !important;
  }

  #lp-features .info-blocks .fa-stack {
    display: block !important;
    margin: 0 auto 14px !important;
    position: relative !important;
  }
}
