/* ========================================
   Telegram CN Theme - Main Stylesheet
   ======================================== */

/* Reset & Base */
*, *::before, *::after {
  box-sizing: border-box;
}

html, body {
  height: 100%;
  margin: 0;
  padding: 0;
}
body {
  font: 12px/18px "Lucida Grande", "Lucida Sans Unicode", Arial, Helvetica, Verdana, sans-serif;
  background: #fff;
  color: #000;
}
.tl_page_wrap {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}
.tl_page_wrap > .footer_wrap {
  margin-top: auto;
}

a {
  color: #0088cc;
  text-decoration: none;
}
a:hover {
  color: #0088cc;
  text-decoration: underline;
}
a:focus {
  text-decoration: none;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: bold;
  margin: 20px 0 10px;
  position: relative;
}
h1 { font-size: 20px; margin-top: 32px; margin-bottom: 12px; }
h2 { font-size: 20px; margin-top: 32px; margin-bottom: 12px; }
h3 { font-size: 20px; margin-top: 32px; margin-bottom: 10px; }
h4 { font-size: 16px; margin-top: 29px; margin-bottom: 7px; }
h5 { font-size: 16px; margin-top: 29px; margin-bottom: 7px; }

img {
  max-width: 100%;
  height: auto;
}

.clearfix::after {
  content: "";
  display: table;
  clear: both;
}

/* Container */
.container {
  margin-right: auto;
  margin-left: auto;
  padding-left: 15px;
  padding-right: 15px;
}
@media (min-width: 768px) {
  .container { width: 750px; }
}
@media (min-width: 992px) {
  .container { width: 970px; }
}
@media (min-width: 1200px) {
  .container { width: 1170px; }
}

/* ========================================
   Navbar
   ======================================== */
.tl_page_head {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: #fff;
  z-index: 1000;
  margin-bottom: 0;
}
@supports (backdrop-filter: blur(0px)) {
  .tl_page_head {
    background: rgba(255, 255, 255, 0.84);
    backdrop-filter: blur(25px);
  }
}
.navbar-tg .navbar-inner {
  box-shadow: none;
  border-bottom: 1px solid #e8e8e8;
}
.navbar-inner {
  padding: 0;
}

/* Nav list */
.nav {
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 15px;
}
.nav > li {
  float: left;
}
.nav > li > a {
  display: block;
  padding: 14px 15px;
  color: #0088cc;
  text-decoration: none;
  position: relative;
  background-color: transparent;
  transition: background-color 0.2s;
}
.nav > li > a:hover,
.nav > li > a:focus {
  background-color: transparent;
  text-decoration: none;
}

/* Active indicator bar */
.nav > li > a::after {
  display: block;
  height: 3px;
  background: #179cde;
  position: absolute;
  border-radius: 2px 2px 0 0;
  content: "";
  left: 4px;
  right: 4px;
  opacity: 0;
  bottom: -1px;
  transition: opacity 0.2s ease-in-out, transform 0.2s ease-in-out;
  transform-origin: bottom;
  transform: scaleX(0.3) scaleY(0);
}
.nav > .active > a::after,
.nav > li > a:hover::after {
  opacity: 1;
  transform: scaleX(1) scaleY(1);
}

/* Navbar right */
.navbar-right {
  float: right !important;
}
.navbar-twitter a {
  padding-top: 14.5px !important;
  padding-bottom: 14.5px !important;
}

/* Hidden on mobile */
@media (max-width: 767px) {
  .hidden-xs {
    display: none !important;
  }
}

/* Twitter icon */
.icon {
  display: inline-block;
}
.icon-twitter {
  width: 21px;
  height: 17px;
  vertical-align: text-top;
  background: url(../img/twitter.png) 0 0 no-repeat;
  opacity: 0.9;
}
a:hover .icon-twitter {
  opacity: 0.99;
}

/* ========================================
   Page Container
   ======================================== */
.tl_page_container {
  margin-top: 50px;
}
.tl_main_page_container {
  padding: 0;
}
.tl_main_wrap {
  margin-top: 17px;
}
.tl_main_wrap h3 {
  color: #222;
  font-size: 23px;
  font-weight: 500;
}

/* ========================================
   Side Blog (Latest News Sidebar)
   ======================================== */
.tl_main_side_blog {
  position: relative;
}
.tl_main_side_blog .side_blog_wrap {
  position: absolute;
  margin-top: 20px;
  width: 260px;
  right: 77px;
}
.side_blog_wrap {
  background: none;
  padding: 5px 17px 5px 0;
  margin: 0 0 17px 26px;
  display: flex;
  flex-wrap: nowrap;
  flex-direction: row;
  justify-content: flex-start;
  align-items: stretch;
}
.side_blog_wrap::before {
  content: " ";
  display: block;
  width: 5px;
  background: #179cde;
  border-radius: 5px;
  overflow: hidden;
  flex: 0 0 auto;
  margin: 0 17px 0 0;
}

.side_blog_header {
  display: block;
  color: #0088cc;
  font-weight: bold;
  font-size: 16px;
  margin-bottom: 15px;
}
a.side_blog_entry {
  display: block;
  margin-top: 10px;
}
a.side_blog_entry:hover {
  text-decoration: none;
}
.side_blog_date {
  color: #000;
  font-weight: bold;
}
.side_blog_title {
  color: #0088cc;
}
a.side_blog_entry:hover .side_blog_title {
  text-decoration: underline;
}

/* ========================================
   Logo Section
   ======================================== */
.tl_main_logo_wrap {
  max-width: 400px;
  margin: 0 auto;
  padding: 20px 0;
}
a.tl_main_logo {
  display: block;
  line-height: 0;
  text-decoration: none !important;
}
div.tl_main_logo {
  display: block;
  width: 144px;
  height: 144px;
  margin: -8px auto;
  animation: 500ms steps(30) both;
  background-repeat: no-repeat;
  background-size: cover;
}
div.tl_main_logo.play {
  animation-name: t-logo-play;
}
@keyframes t-logo-play {
  from { background-position: 0% 0%; }
  to { background-position: 100% 0%; }
}

.tl_main_logo_lead {
  font-size: 20px;
  line-height: 148%;
  max-width: 285px;
  margin: 0 auto;
  color: #8c8c8c;
  text-align: center;
  padding: 1px 0 10px;
  font-family: "HelveticaNeue-Light", "Helvetica Neue Light", "Helvetica Light", Helvetica, Arial, Verdana, sans-serif;
  font-weight: 300;
}

/* ========================================
   Desktop Download Section
   ======================================== */
.tl_main_download_desktop_header {
  text-align: center;
}
.tl_main_download_desktop_wrap1 {
  height: 291px;
  overflow: hidden;
}
.tl_main_download_desktop_wrap {
  position: absolute;
  left: 0;
  right: 0;
}
.tl_main_download_desktop {
  position: absolute;
  left: 0;
  right: 0;
  min-width: 804px;
  background: url(../img/SiteDesktop.jpg) 50% 19px no-repeat;
}
.tl_main_download_desktop_links {
  width: 595px;
  margin: 0 auto;
}
.tl_main_download_desktop_link {
  text-align: center;
  padding: 270px 0 20px;
  font-size: 15px;
  position: relative;
  float: left;
  color: #0088cc;
}
.tl_main_download_desktop_link:hover {
  text-decoration: none;
}
a.tl_main_download_desktop_link::after {
  display: block;
  height: 3px;
  background: #179cde;
  position: absolute;
  border-radius: 2px;
  content: "";
  left: 4px;
  right: 4px;
  opacity: 0;
  bottom: -1px;
  transition: opacity 0.2s ease-in-out, transform 0.2s ease-in-out;
  transform-origin: bottom;
  transform: scaleX(0.3) scaleY(0);
}
a.tl_main_download_desktop_link:hover::after {
  opacity: 1;
  transform: scaleX(1) scaleY(1);
}
.tl_main_download_link_td {
  width: 100%;
  padding-left: 20px;
  padding-right: 20px;
}

/* Platform icons */
.icon-desktop,
.icon-android,
.icon-ios {
  display: inline-block;
  vertical-align: text-top;
  width: 25px;
  height: 27px;
  background: 0 0 no-repeat;
  margin-right: 10px;
  margin-top: -6px;
}
.icon-desktop {
  background-image: url(../img/icons8-windows-32.svg);
}
.icon-ios {
  background-image: url(../img/SiteIconApple.svg);
}
.icon-android {
  background-image: url(../img/SiteIconAndroid.svg);
}

/* ========================================
   Mobile Download Section
   ======================================== */
.tl_main_download_mobile {
  text-align: center;
  max-width: 1028px;
  margin: 0 auto;
}
.tl_main_download_link {
  text-align: center;
  display: inline-block;
  height: 300px;
  padding-top: 262px;
  padding-bottom: 20px;
  margin: 40px 0;
  font-size: 15px;
  max-width: 100%;
  position: relative;
  color: #0088cc;
}
a.tl_main_download_link:hover {
  text-decoration: none;
}
a.tl_main_download_link::after {
  display: block;
  height: 3px;
  background: #179cde;
  position: absolute;
  border-radius: 2px;
  content: "";
  left: 4px;
  right: 4px;
  opacity: 0;
  bottom: -1px;
  transition: opacity 0.2s ease-in-out, transform 0.2s ease-in-out;
  transform-origin: bottom;
  transform: scaleX(0.3) scaleY(0);
}
a.tl_main_download_link:hover::after {
  opacity: 1;
  transform: scaleX(1) scaleY(1);
}

.tl_main_download_link_android {
  width: 28.21%;
  min-width: 245px;
}
.tl_main_download_link_ios {
  width: 42.99%;
  min-width: 350px;
}

/* Device images */
.tl_main_download_image__ios,
.tl_main_download_image__android {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform-origin: 50% 50%;
  opacity: 1;
  pointer-events: none;
  transition: opacity 0.1s ease-in-out;
  padding: 0;
  border: 0;
}
.tl_main_download_image__ios {
  margin: -150px 0 0 -152px;
  width: 304px;
  height: 240px;
  background: url(../img/SiteiOS.jpg) 50% 0 no-repeat;
}
.tl_main_download_image__android {
  margin: -150px 0 0 -152px;
  width: 304px;
  height: 240px;
  background: url(../img/SiteAndroid.jpg) 50% 0 no-repeat;
}

/* ========================================
   Feature Cards Section
   ======================================== */
.tl_main_body {
  margin-top: 40px;
  padding-top: 5px;
}
.tl_main_body_header {
  text-align: center;
  margin-top: 0;
  padding-top: 20px;
}
.tl_main_cards_animated_wrap h3.tl_main_body_header {
  padding: 0 10px;
}
.tl_main_cards_animated_wrap {
  padding-bottom: 20px;
}

.tl_main_cards {
  max-width: 950px;
  margin: 18px auto 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.tl_main_card_cell {
  position: relative;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
  flex: 0 1 auto;
  width: 100%;
}
@media (min-width: 768px) {
  .tl_main_card_cell { width: 50%; }
}
@media (min-width: 992px) {
  .tl_main_card_cell { width: 33.33333%; }
}

.tl_main_card_wrap {
  max-width: 260px;
  margin: 0 auto;
  padding: 20px 0 9px;
}

.tl_main_card_animated {
  width: 160px;
  margin: 0 auto;
}
.tl_main_card_animated div {
  padding-top: 100%;
}
.tl_main_card_animated img {
  display: block;
  width: 160px;
  height: 160px;
  margin: 0 auto;
}

h3.tl_main_card_header {
  text-align: center;
  margin: 15px 0 6px;
  font-size: 20px;
  font-weight: bold;
  letter-spacing: -1px;
}
.tl_main_cards_animated_wrap h3.tl_main_card_header {
  color: #222;
}

.tl_main_card_lead {
  font-size: 14px;
  line-height: 158%;
  text-align: left;
  color: #808080;
}

.tl_main_noshare {
  height: 50px;
}

/* ========================================
   Blog / News Cards Section
   ======================================== */
.tl_blog_list_page_wrap {
  max-width: 800px;
  margin: 0 auto;
}
.tl_blog_list_page_wrap.tl_main_recent_news_wrap {
  margin-top: 22px;
  margin-bottom: 20px;
}
.tl_main_recent_news_header {
  font-size: 16px;
  font-weight: bold;
  text-align: center;
  margin-top: 42px;
}
.tl_main_recent_news_header a {
  color: inherit;
  text-decoration: none;
}
.tl_main_recent_news_header a:hover {
  text-decoration: underline;
}
.tl_main_wrap .tl_main_recent_news_header {
  margin-top: 66px;
}
.tlb_other_news_wrap .tl_main_recent_news_header {
  margin-top: 22px;
  font-size: 18px;
}

.dev_blog_card_link_wrap {
  display: block;
  max-width: 50%;
  float: left;
  padding: 15px 10px;
}
.dev_blog_card_link_wrap:nth-child(odd) {
  clear: left;
}
@media (max-width: 640px) {
  .dev_blog_card_link_wrap {
    max-width: 100%;
  }
}
@media (min-width: 801px) {
  .tl_main_recent_news_cards {
    margin: 0 -15px;
  }
}
a.dev_blog_card_link_wrap:hover,
a.dev_blog_card_link_wrap:active,
a.dev_blog_card_link_wrap:focus {
  text-decoration: none;
}

.dev_blog_card_wrap {
  border: 1px solid #e8e8e8;
  border-radius: 6px;
  overflow: hidden;
  background: #fff;
  transition: box-shadow 0.2s ease;
}
a.dev_blog_card_link_wrap:hover .dev_blog_card_wrap {
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}
.dev_blog_card_image {
  display: block;
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: opacity 0.2s ease-in-out;
  opacity: 1;
}
a:hover .dev_blog_card_image {
  opacity: 0.9;
}

.dev_blog_card_title {
  margin: 12px 0 2px;
  padding: 0 15px;
  font-size: 16px;
  line-height: 160%;
  color: #222;
}
a.dev_blog_card_link_wrap:hover .dev_blog_card_title {
  text-decoration: underline;
}

.dev_blog_card_lead {
  color: #333;
  font-size: 14px;
  line-height: 160%;
  padding: 0 15px;
}
.dev_blog_card_date {
  margin-top: 4px;
  margin-bottom: 12px;
  font-size: 14px;
  color: #888;
  padding: 0 15px;
}

/* ========================================
   Footer
   ======================================== */
.footer_wrap {
  border-top: 1px solid #e8e8e8;
  max-width: 925px;
  margin: 10px auto 0;
  padding: 28px 0 34px;
}
.footer_columns_wrap {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: stretch;
  max-width: 800px;
  margin: 0 auto;
  padding-left: 0;
}
.footer_mobile {
  display: none;
}
.footer_column {
  flex: 0 1 auto;
}
.footer_column_telegram {
  flex: 0 1 210px;
}
.footer_column h5 {
  font-size: 14px;
  margin-top: 0;
  margin-bottom: 9px;
}
.footer_column h5 a {
  color: inherit;
}
.footer_column ul,
.footer_column ul li {
  list-style: none;
  margin: 0;
  padding: 0;
}
.footer_column ul li {
  font-size: 14px;
  line-height: 23px;
}
.footer_telegram_description {
  font-size: 13px;
}
.footer_column a {
  color: #0088cc;
}

/* ========================================
   Page Content
   ======================================== */
#dev_page_content_wrap {
  padding: 20px 0;
  max-width: 800px;
  margin: 0 auto;
}
#dev_page_content p {
  font-size: 14px;
  line-height: 1.5;
}
#dev_page_title {
  position: static;
}

/* ========================================
   Download Button
   ======================================== */
.tl_main_download_btn {
  display: inline-block;
  color: #fff;
  font-size: 16px;
  background: #a19481;
  border-radius: 4px;
  padding: 10px 15px;
  line-height: 35px;
  overflow: hidden;
  width: 220px;
  margin: 5px 8px;
  text-align: center;
}
.tl_main_download_btn:hover {
  background-color: #a99d8b;
  color: #fff;
  text-decoration: none;
}
.tl_main_download_btn:active {
  background-color: #998e7e;
}

.tl_download_page_btn_wrap {
  margin: 30px 0 40px;
}
.tl_download_page_btn_wrap .tl_main_download_btn {
  width: auto;
  padding: 12px 30px;
  font-size: 18px;
}

/* Apps page */
.tl_apps_list {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin: 20px 0 30px;
}
.tl_app_item .tl_main_download_btn {
  width: auto;
}

/* ========================================
   Pagination
   ======================================== */
.pagination-wrap {
  text-align: center;
  margin: 40px 0;
  clear: both;
}
.pagination-wrap a,
.pagination-wrap span {
  display: inline-block;
  margin: 0 5px;
  padding: 8px 12px;
  border: 1px solid #ddd;
  color: #333;
  text-decoration: none;
}
.pagination-wrap .current {
  background: #0073aa;
  color: #fff;
  border-color: #0073aa;
}

/* ========================================
   Responsive
   ======================================== */
@media (max-width: 991px) {
  .tl_main_side_blog .side_blog_wrap {
    display: none;
  }
  .tl_main_download_desktop_wrap1 {
    height: auto;
    overflow: visible;
  }
  .tl_main_download_desktop_wrap {
    position: relative;
  }
  .tl_main_download_desktop {
    position: relative;
    min-width: auto;
    background-size: contain;
    background-position: 50% 0;
  }
  .tl_main_download_desktop_links {
    width: auto;
  }
  .tl_main_download_desktop_link {
    padding-top: 20px;
    float: none;
    width: auto;
  }
}

@media (max-width: 767px) {
  .tl_main_download_mobile {
    display: block;
  }
  .tl_main_download_link {
    display: block;
    width: 100% !important;
    height: auto;
    padding-top: 20px;
    margin: 10px 0;
  }
  .tl_main_download_image__ios,
  .tl_main_download_image__android {
    display: none;
  }
  .footer_desktop {
    display: none;
  }
  .footer_mobile {
    display: flex;
    justify-content: center;
    gap: 20px;
  }
  .nav > li {
    float: none;
    display: inline-block;
  }
  .nav > li > a {
    padding: 10px 8px;
    font-size: 13px;
  }
}

/* ========================================
   App Icons
   ======================================== */
.app-icon {
  display: inline-block;
  width: 30px;
  height: 30px;
  line-height: 30px;
  margin-right: 7px;
  vertical-align: -9px;
  background: no-repeat left;
  background-size: cover;
}
.app-icon-android {
  background-image: url(../img/app_icon_android.svg);
}
.app-icon-ios {
  background-image: url(../img/app_icon_ios.svg);
}
.app-icon-macos {
  background-image: url(../img/app_icon_macos.svg);
}
.app-icon-desktop {
  background-image: url(../img/app_icon_desktop.svg);
}
.app-icon-webk {
  background-image: url(../img/app_icon_webk.svg);
}
.app-icon-weba {
  background-image: url(../img/app_icon_weba.svg);
}

/* ========================================
   Anchor Links
   ======================================== */
a.anchor {
  text-decoration: none;
  line-height: 1;
  margin-left: -22px;
  cursor: default;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  border-top: 60px solid transparent;
  margin-top: -60px;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  outline: 0;
}
a.anchor i.anchor-icon {
  display: inline-block;
  width: 18px;
  height: 20px;
  margin-top: 2px;
  line-height: 14px;
  vertical-align: text-top;
  background: url(../img/link-icon.png) 0 0 no-repeat;
  background-size: 17px 18px;
  opacity: 0;
  cursor: pointer;
  padding: 0;
  position: relative;
  z-index: 10;
  transition: opacity 0.15s ease-in-out;
}
h1:hover a.anchor i.anchor-icon,
h2:hover a.anchor i.anchor-icon,
h3:hover a.anchor i.anchor-icon,
h4:hover a.anchor i.anchor-icon,
h5:hover a.anchor i.anchor-icon,
h6:hover a.anchor i.anchor-icon {
  opacity: 0.6;
}
i.anchor-icon:hover {
  opacity: 1 !important;
}

/* ========================================
   Page Content Styles (apps, faq, etc.)
   ======================================== */
.dev_page_nav_wrap ul {
  list-style: none;
  padding-left: 0;
}
.dev_page_nav_wrap ul li {
  font-size: 14px;
  line-height: 23px;
  padding: 4px 0;
}

#dev_page_content ul {
  padding-left: 10px;
}
#dev_page_content ul li {
  font-size: 14px;
  line-height: 23px;
  list-style: none;
  background-image: url(../img/link-icon.png);
  background-repeat: no-repeat;
  background-position: 0px 8px;
  background-size: 10px 10px;
  padding-left: 20px;
  margin-bottom: 4px;
}

#dev_page_content blockquote {
  padding: 5px 17px;
  border-left: 4px solid #179cde;
  margin: 15px 0;
  background: #f8f9fa;
}
#dev_page_content blockquote p {
  font-size: 14px;
  font-weight: normal;
  line-height: 20px;
  margin-bottom: 10px;
}

#dev_page_content hr {
  border: 0;
  border-top: 1px solid #e8e8e8;
  margin: 25px 0;
}

#dev_page_content pre,
#dev_page_content code {
  border: 0;
}
#dev_page_content pre {
  font-size: 13px;
  color: #546172;
  background: #ecf3f8;
  border-radius: 0;
  padding: 9.5px;
  overflow-x: auto;
}
#dev_page_content code {
  background: #feeae4;
  color: #c61717;
  padding: 3px 5px;
  border-radius: 0;
}

/* ========================================
   FAQ / Content Page Extended Styles
   ======================================== */
#dev_page_content ol {
  padding-left: 25px;
}
#dev_page_content ol > li {
  padding-left: 5px;
  font-size: 14px;
  line-height: 1.5;
  margin-bottom: 6px;
}

#dev_page_content del {
  text-decoration: line-through;
  opacity: 0.6;
}
#dev_page_content mark {
  padding: 0.2em 0.4em;
}

#dev_page_content h3 {
  font-size: 20px;
  margin-top: 32px;
  margin-bottom: 10px;
}
#dev_page_content h4 {
  font-size: 16px;
  margin-top: 29px;
  margin-bottom: 7px;
}
#dev_page_content h5 {
  font-size: 16px;
  margin-top: 29px;
  margin-bottom: 7px;
}
#dev_page_content h6 {
  font-size: 14px;
  margin-top: 20px;
  margin-bottom: 5px;
}

#dev_page_content .blog_video_player_wrap {
  margin: 20px auto;
  text-align: center;
}
#dev_page_content .blog_video_player {
  max-width: 100%;
  height: auto;
  cursor: pointer;
  border-radius: 4px;
}

#dev_page_content .blog_image_wrap {
  margin: 20px 0;
  text-align: center;
}
#dev_page_content .blog_image_wrap img {
  max-width: 100%;
  height: auto;
  border-radius: 4px;
}
#dev_page_content .blog_image_wrap p {
  font-size: 13px;
  color: #888;
  margin-top: 8px;
  text-align: center;
}

#dev_page_content .dev_page_nav_wrap {
  margin-bottom: 20px;
}
#dev_page_content .dev_page_nav_wrap > p > a > strong {
  font-size: 15px;
}

#dev_page_content img.icon {
  vertical-align: top;
  width: auto;
  height: 20px;
}

/* ========================================
   Homepage Content Sections
   ======================================== */
.tl_section_header {
  font-size: 20px;
  font-weight: bold;
  text-align: center;
  margin: 42px 0 20px;
  color: #222;
}

.tl_about_section {
  max-width: 760px;
  margin: 0 auto;
  padding: 20px 0 30px;
}
.tl_about_content p {
  font-size: 14px;
  line-height: 1.8;
  color: #444;
  margin-bottom: 12px;
}

.tl_stats_section {
  background: #f7f8fa;
  padding: 30px 0 40px;
}
.tl_stats_grid {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
  margin-top: 20px;
}
.tl_stat_item {
  text-align: center;
  min-width: 160px;
  padding: 20px 24px;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}
.tl_stat_number {
  font-size: 28px;
  font-weight: bold;
  color: #0088cc;
  margin-bottom: 6px;
}
.tl_stat_label {
  font-size: 13px;
  color: #666;
}

.tl_faq_snippet_section {
  max-width: 760px;
  margin: 0 auto;
  padding: 10px 0 40px;
}
.tl_faq_item {
  border-bottom: 1px solid #eee;
  padding: 16px 0;
}
.tl_faq_item:last-child {
  border-bottom: none;
}
.tl_faq_q {
  font-size: 15px;
  font-weight: bold;
  color: #222;
  margin: 0 0 8px;
}
.tl_faq_a {
  font-size: 14px;
  line-height: 1.7;
  color: #555;
  margin: 0;
}

/* ========================================
   WordPress specific overrides
   ======================================== */
.wp-block-image img {
  max-width: 100%;
  height: auto;
}
.aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.alignleft {
  float: left;
  margin-right: 15px;
}
.alignright {
  float: right;
  margin-left: 15px;
}
