@font-face {
  font-family: "Sinhala MN";
  font-weight: 400;
  font-style: normal;
  font-display: swap;
  src: url(../fonts/Sinhala-MN.woff2) format("woff2"), url(../fonts/Sinhala-MN.woff) format("woff");
}
@font-face {
  font-family: "GT Super Text";
  font-weight: 500;
  font-style: normal;
  font-display: swap;
  src: url(../fonts/GT-Super-Text.woff2) format("woff2"), url(../fonts/GT-Super-Text.woff) format("woff");
}
@font-face {
  font-family: "Google Sans";
  font-weight: 400;
  font-style: normal;
  font-display: swap;
  src: url(../fonts/GoogleSans.woff2) format("woff2"), url(../fonts/GoogleSans.woff) format("woff");
}

* {
  box-sizing: border-box;
}

body {
  font-family: "GT Super Text", system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, "Open Sans", "Helvetica Neue", sans-serif, serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 20px;

  position: relative;

  color: #333;

  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

input:focus,
button:focus {
  outline: none;
}

body,h1,h2,h3,h4,h5,h6,p,ul,ol {
  margin: 0;
  padding: 0;
}

table {
  border-collapse: collapse;
}

li {
  list-style: none;
}

article,aside,figure,footer,header,main,nav,section {
  display: block;
}

a {
  display: inline-block;

  cursor: pointer;
  text-decoration: none;

  color: #000;
}

a,
a:hover,
a:visited {
  outline: none;
}

html {
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  background-color: #fff;
}

img {
  width: 100%;
  max-width: 100%;

  transition: opacity ease 0.25s;
  vertical-align: middle;

  opacity: 1;
}

img[data-src] {
  opacity: 0;
}

input {
  border: none;
  background: 0 0;
}

::-webkit-input-placeholder {
  color: #9da8ba;
  font-size: 15px;
}

::-moz-placeholder {
  color: #9da8ba;
  font-size: 15px;
}

:-ms-input-placeholder {
  color: #9da8ba;
  font-size: 15px;
}

input[type="checkbox"] {
  display: none;
}

.coverlink {
  position: absolute;
  z-index: 3;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

/* header */
.hl-header {
  width: 100%;
  background: #fff;
  border-bottom: 1px solid #DFE5E4;
}
.hl-header-inner {
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 60px;
  padding: 0 16px;
}
.hl-logo-wrapper {
  flex: 0 0 90px;
  display: block;
}
.hl-logo {
  height: auto;
  width: 90px;
}

.hl-menu-toggle {
  display: block;
  width: 22px;
  height: 22px;
  padding: 0;
  border: none;
  background: none;
  cursor: pointer;
  position: relative;
}
.hl-menu-icon,
.hl-menu-icon::before,
.hl-menu-icon::after {
  display: block;
  width: 22px;
  height: 2px;
  background: #333;
  position: absolute;
  transition: all 0.3s ease;
}
.hl-menu-icon {
  top: 50%;
  transform: translateY(-50%);
}
.hl-menu-icon::before {
  content: '';
  top: -8px;
}
.hl-menu-icon::after {
  content: '';
  bottom: -8px;
}
.hl-menu-toggle.active .hl-menu-icon {
  background: transparent;
}
.hl-menu-toggle.active .hl-menu-icon::before {
  transform: rotate(45deg) translate(5px, 5px);
}
.hl-menu-toggle.active .hl-menu-icon::after {
  transform: rotate(-45deg) translate(5px, -5px);
  bottom: -6px;
}


.hl-nav-wrapper {
  display: none;
  position: fixed;
  top: 60px;
  left: 0;
  right: 0;
  bottom: 0;
  background: #fff;
  overflow-y: auto;
  padding: 16px;
  z-index: 100;
}
.hl-nav-wrapper.active {
  display: block;
}
.hl-nav {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.hl-nav-item {
  position: relative;
  border-bottom: 1px solid #f0f0f0;
}
.hl-nav-link {
  color: #333;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 16px 0;
  display: block;
  position: relative;
}
.hl-nav-link::after {
  content: '';
  display: block;
  width: 10px;
  height: 10px;
  border-right: 2px solid #999;
  border-bottom: 2px solid #999;
  position: absolute;
  right: 8px;
  top: calc(50% - 2px);
  transform: translateY(-50%) rotate(45deg);
  transition: transform 0.3s ease;
}
.hl-nav-item.active .hl-nav-link::after {
  transform: translateY(-50%) rotate(-135deg);
  top: calc(50% + 2px);
}

.hl-dropdown {
  display: none;
  background: #f8f8f8;
  padding: 8px 0;
}
.hl-nav-item.active .hl-dropdown {
  display: block;
}
.hl-dropdown-inner {
  padding: 0 16px;
}
.hl-dropdown-section {
  display: flex;
  flex-direction: column;
}
.hl-dropdown-section a {
  color: #666;
  font-size: 14px;
  padding: 12px 0;
  border-bottom: 1px solid #eee;
}
.hl-see-all {
  color: #259888 !important;
  font-weight: 500;
  border-bottom: none !important;
}

.subscribe-wrapper {
  position: relative;
}
.hl-btn-subscribe {
  margin-top: 24px;
  width: 100%;
  background: #375c57;
  color: #fff;
  border: none;
  border-radius: 4px;
  padding: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 14px;
  display: none;
}
.hl-btn-subscribe img {
  width: 18px;
  height: 18px;
}
.hl-nav-link:hover,
.hl-dropdown-section a:hover { 
  color: #259888;
  transition: all 0.3s ease;
}
.subscribe-block {
  position: absolute;
  top: 54px;
  left: -32px;
  width: 100%;
  height: 100%;
  background: #fff;
  z-index: 100;
  display: none;
}
.subscribe-inner {
  display: flex;
  width: 232px;
  padding: 32px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border-radius: 8px;
  background: #FFF;
  box-shadow: 0px 0px 32px 0px rgba(55, 92, 87, 0.12);
  position: relative;
  overflow: hidden;
}
.subscribe-inner::before {
  content: '';
  position: absolute;
  top: -44px;
  left: -20px;
  right: -20px;
  height: 120px;
  background: #F7F9F9;
  border-radius: 50%;
  z-index: 0;
}
.subscribe-inner img {
  position: relative;
  z-index: 1;
  width: 72px;
  height: 72px;
}
.subscribe-inner h3 {
  position: relative;
  z-index: 1;
  color: #339E8F;
  text-align: center;
  font-family: "Google Sans";
  font-size: 20px;
  font-weight: 700;
  line-height: 24px;
  margin-top: 16px;
  margin-bottom: 8px;
}
.subscribe-inner p {
  position: relative;
  z-index: 1;
  color: #999;
  text-align: center;
  font-family: "Google Sans";
  font-size: 14px;
  line-height: 20px;
}
.resume,
.welcome {
  left: -64px;
}
.resume .subscribe-inner::before,
.welcome .subscribe-inner::before {
  height: 160px;
}
.resume .subscribe-inner,
.welcome .subscribe-inner {
  width: 300px;
}
.resume img,
.welcome img {
  width: 194px;
  height: 124px;
  border-radius: 4px;
  border: 2px solid #339E8F;
}
.resume h3,
.welcome h3 {
  color: #333;
}
.subscribe-pop {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0,0,0,0);
  z-index: 99;
  cursor: pointer;
  display: none;
}

/* 404 page */
.not-find {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 40px 0;
}
.icon-not {
  width: 300px;
  stroke: #375c57;
}
.not-info {
  display: flex;
  flex-direction: column;
  align-items: center;

  margin-top: 32px;
}
.not-info h1 {
  font-size: 30px;
  line-height: 40px;
  margin-bottom: 6px;
}
.not-info p {
  color: #666;
  margin-bottom: 24px;
}
.not-info a {
  background-color: #259888;
  color: #fff;
  padding: 10px 24px;
  width: 180px;
  text-align: center;

  border-radius: 32px;
  font-weight: 700;
}
.not-info a:hover {
  text-decoration: underline;
}

/* Main Content */
.wrapper {
  margin: 0 auto;
  padding: 0 16px;
}

/* Latest Section */
.hl-latest {
  margin-bottom: 20px;
}
.hl-latest-tl {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin: 32px 0 24px;
}
.hl-latest-text {
  font-family: "Sinhala MN";
  font-weight: 500;
  font-size: 28px;
  line-height: 1;
  color: #375c57;
  text-transform: uppercase;
  letter-spacing: 2px;
}
.hl-latest-icon {
  position: relative;
  top: -4px;
  width: 36px;
  height: 36px;
}
.hl-latest-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.hl-latest-list {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 20px;
}
.hl-latest-list:first-child {
  display: none;
}
.hl-latest-card {
  position: relative;
  display: flex;
  gap: 16px;
  transition: transform 0.3s ease;
}
.hl-latest-card:hover {
  transform: translateY(-4px);
}
.hl-latest-card-image {
  flex: 0 0 120px;
  height: 100px;
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.3s ease;
}
.hl-latest-card:hover .hl-latest-card-image {
  box-shadow: 0 6px 12px rgba(0,0,0,0.1);
}
.hl-latest-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.hl-latest-card:hover .hl-latest-card-image img {
  transform: scale(1.05);
}
.hl-latest-card-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
}
.hl-latest-card-tag {
  color: #259888;
  font-family: "Google Sans";
  font-size: 10px;
  font-style: normal;
  font-weight: 500;
  line-height: 10px;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}
.hl-latest-card-title {
  font-size: 16px;
  line-height: 20px;
  color: #333;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  font-weight: 500;
  transition: color 0.3s ease;
}
.hl-latest-card-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: auto;
}
.hl-latest-card-author,
.hl-latest-card-date {
  font-size: 12px;
  color: #666;
}

/* Feature Card */
.hl-latest-feature {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 16/9;
  transition: transform 0.3s ease;
}
.hl-latest-feature:hover {
  transform: translateY(-4px);
}
.hl-latest-feature-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.hl-latest-feature-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.hl-latest-feature:hover .hl-latest-feature-image img {
  transform: scale(1.05);
}
.hl-latest-feature-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px;
  background: linear-gradient(to top, rgba(0,0,0,0.8), rgba(0,0,0,0));
  color: #fff;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.hl-latest-feature-info .hl-latest-card-tag {
  color: #fff;
}
.hl-latest-feature-title {
  font-size: 24px;
  line-height: 1.3;
  margin: 0;
  font-weight: 500;
  transition: color 0.3s ease;
}
.hl-latest-feature:hover .hl-latest-feature-title {
  color: rgba(255,255,255,0.9);
}
.hl-latest-feature-info .hl-latest-card-meta {
  color: rgba(255,255,255,0.8);
}
.hl-latest-feature-info .hl-latest-card-author,
.hl-latest-feature-info .hl-latest-card-date {
  color: inherit;
}

/* Editors Section */
.hl-editors {
  margin-bottom: 20px;
}
.hl-editors-tl {
  font-family: "Sinhala MN";
  font-weight: 500;
  font-size: 24px;
  line-height: 30px;
  color: #333;
  text-transform: uppercase;
  letter-spacing: 3px;
  margin: 32px 0 24px;
  text-align: center;
}
.hl-editors-content {
  margin: 0;
}
.hl-editors-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  padding: 0;
}
.hl-editors-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 12px;
  text-decoration: none;
  transition: transform 0.3s ease;
}
.hl-editors-card:hover {
  transform: translateY(-4px);
}
.hl-editors-card-image {
  width: 100%;
  aspect-ratio: 16/9;
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.3s ease;
}
.hl-editors-card:hover .hl-editors-card-image {
  box-shadow: 0 6px 12px rgba(0,0,0,0.1);
}
.hl-editors-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.hl-editors-card:hover .hl-editors-card-image img {
  transform: scale(1.05);
}
.hl-editors-card-info {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 0;
}
.hl-editors-card-tag {
  color: #259888;
  font-family: "Google Sans";
  font-size: 10px;
  font-style: normal;
  font-weight: 500;
  line-height: 10px;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}
.hl-editors-card-title {
  font-size: 16px;
  line-height: 20px;
  font-weight: 500;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: color 0.3s ease;
}

/* Footer */
.hl-footer {
  background: #F8F9F9;
  padding-top: 32px;
  margin-top: 32px;
}
.hl-footer-main {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 24px;
}
.hl-footer-brand-section {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-start;
}
.hl-footer-logo {
  display: flex;
  justify-content: center;
}
.hl-footer-logo img {
  height: 44px;
  width: auto;
}
.hl-footer-links:first-child {
  display: none;
}
.hl-footer-left {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.hl-footer-top {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.hl-footer-info {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 64px;
}
.hl-footer-subscribe {
  display: flex;
  flex-direction: column;
  gap: 24px;
  display: none;
}
.hl-footer-desc {
  display: flex;
  align-items: center;
  gap: 12px;
}
.hl-footer-icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
}
.hl-footer-desc p {
  color: #375C57;
  font-family: "Google Sans";
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: 20px;
}
.hl-footer-nav {
  display: flex;
}
.hl-footer-title {
  font-family: "Google Sans";
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
  color: #333;
  margin-bottom: 24px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.hl-footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
}
.hl-footer-links a {
  font-family: "Google Sans";
  font-size: 14px;
  line-height: 20px;
  font-weight: 500;
  color: #666;
  text-transform: uppercase;
}
.hl-footer-links a:hover {
  color: #259888;
}
.hl-footer-bottom {
  border-top: 1px solid #DFE5E4;
  padding: 24px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}
.hl-footer-copyright {
  font-family: "Google Sans";
  font-size: 14px;
  line-height: 20px;
  color: #999;
  text-align: center;
}
.hl-footer-partners {
  display: flex;
  justify-content: center;
  gap: 12px;
}
.partner-logo {
  height: 32px;
  width: auto;
}
.partner-link {
  width: 50%;
  max-width: 200px;
  padding: 16px;
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}
.as-logo {
  width: 152px;
}

/* Design Tips Section */
/* .hl-design {
  margin-bottom: 40px;
} */
.hl-design-meta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin: 32px 0 24px;
}
.hl-design-tl {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: "Sinhala MN";
  font-weight: 500;
  font-size: 24px;
  line-height: 30px;
  color: #333;
  text-transform: uppercase;
  letter-spacing: 3px;
  text-align: center;
}
.icon-next {
  width: 24px;
  height: 24px;
  fill: #ccc;
}
.hl-design-meta:hover .icon-next {
  fill: #259888;
  transition: all 0.3s ease;
}

.hl-design-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  padding: 0;
}
.hl-design-card {
  position: relative;
  display: flex;
  align-items: center;
  gap: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid #f0f0f0;
  transition: transform 0.3s ease;
}
.hl-design-card:hover {
  transform: translateX(4px);
}
.hl-design-card-image {
  flex: 0 0 120px;
  height: 100px;
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.3s ease;
}
.hl-design-card:hover .hl-design-card-image {
  box-shadow: 0 6px 12px rgba(0,0,0,0.1);
}
.hl-design-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.hl-design-card:hover .hl-design-card-image img {
  transform: scale(1.05);
}
.hl-design-card-info {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.hl-design-card-tag {
  color: #259888;
  font-family: "Google Sans";
  font-size: 10px;
  font-style: normal;
  font-weight: 500;
  line-height: 10px;
  letter-spacing: 0.96px;
  text-transform: uppercase;
}
.hl-design-card-title {
  font-size: 16px;
  line-height: 20px;
  font-weight: 500;
  transition: color 0.3s ease;
}
.hl-design-card-author {
  font-family: "Google Sans";
  font-size: 12px;
  line-height: 12px;
  color: #999;
}

.page-header {
  margin-top: 32px;
  margin-bottom: 24px;
}
.page-tag {
  font-family: "Google Sans";
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  line-height: 16px;
  letter-spacing: 0.96px;
  text-transform: uppercase;
  color: #999;
}
.page-tl {
  font-family: "GT Super Text";
  font-size: 24px;
  font-weight: 500;
  line-height: 30px;
  margin-top: 32px;
  margin-bottom: 24px;
}
.page-header .page-tl { 
  margin-top: 8px;
  margin-bottom: 0;
}
.page-tl + .more-list {
  margin-top: -12px;
} 
.article-img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 8px;
  margin: 20px 0;
}

.article-key {
  position: relative;
  margin: 20px 0;
  padding: 48px 20px 20px;

  border-radius: 4px;
  border: 2px solid rgba(51, 158, 143, 0.25);
  background-color: #fff;
}
.article-key > img {
  position: absolute;
  top: -1px;
  right: -5px;
  width: 200px;
  height: 44px;
  transform: rotate(180deg);
}
.article-key > h3 {
  color: #375C57;

  font-family: "GT Super Text";
  font-size: 22px;
  font-style: normal;
  font-weight: 700;
  line-height: 1;
  text-transform: capitalize;
  margin-bottom: 24px;
}
.article-key ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-left: 16px;
}
.article-key ul li {
  font-family: "Google Sans";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px;
  list-style: disc;
  padding-left: 8px;
}
.article-key-ls {
  margin-top: -20px;
}
.article-key-item {

}
.article-key-con {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 20px 0;
  border-bottom: 1px solid #eee;
}
.article-key-tl {
  flex: 1;
  font-family: "GT Super Text";
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
}
.article-key-con:hover .article-key-tl {
  color: #259888;
}
.article-key-con:hover .article-key-piccon {
  transform: scale(1.05);
}
.article-key-con:hover .article-key-pic {
  box-shadow: 0 6px 12px rgba(0,0,0,0.1);
}
.article-key-pic {
  flex: 0 0 120px;
  width: 120px;
  height: 80px;
  border-radius: 4px;
  overflow: hidden;
  transition: transform 0.3s ease;
}
.article-key-piccon {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.3s ease;
}
.right-key {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: all 0.3s ease;
}
.right-key p {
  font-family: "Google Sans";
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  text-align: center;
}
.right-key .btn {
  display: block;
  width: 200px;
  height: 44px;
  line-height: 44px;
  text-align: center;
  border-radius: 32px;
  background-color: #259888;
  color: #fff;
  margin-top: 24px;
  transition: all 0.3s ease;
}
.right-key:hover {
  background-color: #F7F9F9;
}
.right-key:hover .btn {
  background-color: #2a8579;
}

.archive-page {
  min-height: calc(100vh - 300px);
}
.article-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 20px;
}
.article-info p {
  font-family: "GT Super Text";
  font-size: 16px;
  font-weight: 400;
  line-height: 28px;
}
.article-info p + ul,.article-info p + ol {
  margin-top: -8px;
}
.article-info .title {
  display: flex;
  align-items: center;
  gap: 20px;
}
.article-info .title h2,.article-info h2 {
  color: #339E8F;
  font-family: "GT Super Text";
  font-size: 22px;
  font-weight: 500;
  line-height: 30px;
  text-decoration-line: underline;
  text-underline-offset: 8px;
}
.article-info .title .order {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 6px 16px;
  justify-content: center;
  align-items: center;
  border-radius: 8px;
  background: #F7F9F9;
}
.article-info .title .order span:first-child {
  color: #339E8F;
  font-family: "GT Super Text";
  font-size: 32px;
  font-weight: 500;
  line-height: 28px;
}
.article-info .title .order span:last-child {
  color: #8AA;
  text-align: center;
  font-family: "GT Super Text";
  font-size: 16px;
  font-weight: 500;
  line-height: 20px;
}
.article-info img {
  cursor: zoom-in;
}
.article-info > img {
  width: 100%;
  max-height: 300px;
  object-fit: cover;
  border-radius: 4px;
}
.detail-image {
  max-height: 400px;
  object-fit: cover;
  border-radius: 4px;
}
.article-info ul,
.article-info ol {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-left: 16px;
}
.article-info li {
  list-style: disc;
  color: #333;
  font-family: "GT Super Text";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px;
  text-transform: capitalize;
  padding-left: 8px;
}
.article-info table {
  display: block;
  border-collapse: collapse;
  width: 100%;
  table-layout: fixed;
  overflow-x: auto;
}
.article-info tr th {
  background-color: #f4f4f4;
  border: 1px solid #ddd;
  padding: 9px 10px;
  text-align: left;
}
.article-info tr td {
  border: 1px solid #ddd;
  padding: 9px 10px;
  text-align: left;
}
.article-info .article-key { 
  margin: 0;
}
.info-image {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 24px 12px;
}
.info-image img {
  width: 70px;
}
.info-image img:first-child {
  width: 100%;
  max-height: 300px;
  object-fit: cover;
}
.image-viewer-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 1000;
  cursor: zoom-out;
}
.image-viewer-container {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
}
.image-viewer-container img {
  max-width: 100%;
  max-height: 90vh;
  object-fit: contain;
}


.article-more {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 32px 0;
}
.more-tl {
  font-family: "GT Super Text";
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
}
.more-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
}
.more-item {
  display: flex;
  padding: 10px 16px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 32px;
  border: 1px solid #339E8F;
  color: #339E8F;
  font-family: "Google Sans";
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 20px;
  text-transform: capitalize;
  transition: all 0.3s ease;
}
.more-item:hover {
  background-color: #259888;
  color: #fff;
}

.house-tl {
  color: #333;
  font-family: "Sinhala MN";
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px;
  letter-spacing: 0.96px;
  margin: 32px 0;
}
.right-tl {
  color: #333;
  font-family: "Sinhala MN";
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px;
  letter-spacing: 0.96px;
  margin-top: 32px;
}
.related-ls {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 24px;
}
.related-item {

}
.related-con {
  position: relative;
  display: flex;
  align-items: center;
  gap: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid #f0f0f0;
  transition: all 0.3s ease;
}
.related-con:hover {
  transform: translateY(-4px);
}
.related-pic {
  flex: 0 0 120px;
  width: 100%;
  height: 100px;
  border-radius: 4px;
  overflow: hidden;
}
.related-piccon {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.3s ease;
}
.related-con:hover .related-pic {
  box-shadow: 0 6px 12px rgba(0,0,0,0.1);
}
.related-con:hover .related-piccon {
  transform: scale(1.05);
}
.related-tag {
  color: #259888;
  font-family: "Google Sans";
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  line-height: 16px;
  letter-spacing: 0.96px;
}
.related-tl {
  color: #333;
  
  font-family: "GT Super Text";
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 24px;

  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  text-overflow: ellipsis;
  overflow: hidden;
  margin-top: 4px;
}
.related-author {
  color: #999;
  font-family: "Google Sans";
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  letter-spacing: 0.1px;
}

.article-nav-ls {
  margin: 24px 0;
  width: 100%;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding-bottom: 4px;
}
.article-nav-ls::-webkit-scrollbar {
  display: none;
}
.article-nav-inner {
  display: flex;
  flex-direction: column;
  padding: 16px;
  max-height: 300px;
  overflow-y: scroll;
  scrollbar-width: thin;
  scrollbar-color: #339E8F #f0f0f0;
  background-color: #fafffe;
}
.article-nav-inner::-webkit-scrollbar {
  width: 4px;
}
.article-nav-inner::-webkit-scrollbar-track {
  background: #f0f0f0;
  border-radius: 2px;
}
.article-nav-inner::-webkit-scrollbar-thumb {
  background-color: #339E8F;
  border-radius: 2px;
}
.article-nav-item {
  color: #333;
  font-family: "Google Sans";
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 24px;
  margin: 12px 0;
  text-transform: capitalize;
  position: relative;
  padding-left: 32px;
  cursor: pointer;
}
.article-nav-item.active {
  color: #339E8F;
}
.article-nav-item.active::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  background-image: url('../images/icon-arrow.svg');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.top-fixed {
  position: sticky;
  top: 32px;
}

/* category */
.cate-ls {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.cate-item {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
  background-color: #F7F9F9;
  padding: 12px;
  border-radius: 4px;
  transition: all 0.3s ease;
}
.cate-info {
  display: flex;
  align-items: center;
  gap: 12px;
}
.cate-img {
  width: 36px;
  height: 36px;
  transition: all 0.3s ease;
}
.cate-item:hover .cate-img {
  transform: scale(1.1) rotate(5deg);
}
.cate-tl {
  color: #333;
  font-family: "GT Super Text";
  font-size: 16px;
  line-height: 20px;
  transition: all 0.3s ease;
}
.cate-item:hover .cate-tl {
  color: #339E8F;
}
.icon-cate-arrow {
  width: 20px;
  height: 20px;
  fill: #CCCCCC;
  transition: all 0.3s ease;
  display: none;
}
.cate-item:hover .icon-cate-arrow {
  transform: translateX(4px);
  fill: #339E8F;
}

.trending-block {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  border-radius: 4px;
  background: #F7F9F9;
  margin-bottom: 32px;
  padding-bottom: 20px;
  transition: all 0.3s ease;
}
.trending-block:hover {
  background: #F0F5F5;
  box-shadow: 0 6px 12px rgba(0,0,0,0.08);
}
.trending-pic {
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 4px 4px 0 0;
  overflow: hidden;
}
.trending-piccon {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.3s ease;
}
.trending-block:hover .trending-piccon {
  transform: scale(1.05);
}
.trending-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 24px;
  margin-top: 20px;
}
.trending-tag {
  color: #259888;
  font-family: "Google Sans";
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  line-height: 16px;
  letter-spacing: 0.96px;
}
.trending-tl {
  text-align: center;
  font-family: "GT Super Text";
  font-size: 20px;
  font-weight: 500;
  line-height: 28px;
  margin-top: 8px;
  transition: color 0.3s ease;
}
.trending-block:hover .trending-tl {
  color: #259888;
}
.trending-author {
  color: #999;
  font-family: "Google Sans";
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
  letter-spacing: 0.1px;
  text-transform: capitalize;
}
.trending-btn {
  display: flex;
  padding: 10px 24px;
  justify-content: center;
  align-items: center;
  gap: 8px;
  border-radius: 32px;
  background: #339E8F;
  margin-top: 20px;
  color: #FFF;
  font-family: "Google Sans";
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: 20px;
  letter-spacing: 2.8px;
  transition: all 0.3s ease;
}
.trending-block:hover .trending-btn {
  background: #2a8579;
}
.cate-related-ads {
  margin-top: 24px;
}

.cate-right-ads {
  margin-top: 40px;
}
.cate-right-tl {
  color: #333;
  font-family: "Sinhala MN";
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px;
  letter-spacing: 0.96px;
  margin-top: 40px;
  margin-bottom: 24px;
}
.cate-nav-ls {

}
.cate-nav-item {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 20px 12px 12px;
  border-radius: 4px;
  background-color: #fff;
  gap: 12px;
  transition: all 0.3s ease;
}
.cate-nav-item:hover {
  background-color: #F7F9F9;
}
.cate-nav-item:hover .icon-cate-next {
  display: block;
}
.cate-nav-pic {
  flex: 0 0 48px;
  height: 48px;
  border-radius: 50%;
  overflow: hidden;
}
.cate-nav-piccon {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cate-nav-info {
  flex: 1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}
.cate-nav-tl {
  color: #333;
  font-family: "GT Super Text";
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 24px;
}
.icon-cate-next {
  width: 20px;
  height: 20px;
  display: none;
  transition: all 0.3s ease;
}
.page-right {
  display: none;
}

/* a-z */
.page-text {
  font-family: "GT Super Text";
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 24px;
  margin-top: -12px;
  color: #666;
}
.a-z-tl {
  margin-bottom: 20px;
}
.a-z-ls {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
  margin-bottom: 24px;
}
.a-z-item {
  font-size: 16px;
  line-height: 30px;
  text-align: center;
  cursor: pointer;
  border: 1px solid #259888;
  border-radius: 4px;
}
.a-z-item:hover {
  color: #fff;
  background-color: #259888;
}
.back-to-top {
  position: fixed;
  right: 12px;
  bottom: 82px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #339E8F;
  color: white;
  border: none;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  z-index: 100;
  cursor: pointer;
}
.back-to-top.visible {
  opacity: 1;
  visibility: visible;
}
.back-to-top:hover {
  background-color: #2a8579;
  transform: translateY(-2px);
}
.icon-top {
  width: 24px;
  height: 24px;
}

.plants-ls {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 32px;
}
.plants-item {

}
.plants-tl {
  font-family: "Sinhala MN";
  font-size: 24px;
  line-height: 28px;
  letter-spacing: 0.96px;
  margin-bottom: 24px;

  border-bottom: 1px solid #259888;
  padding-bottom: 12px;
}
.plants-cate-ls {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.plants-cate-item {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;

  padding: 16px 12px;
  border-radius: 8px;
  background-color: #F7F9F9;
  transition: all 0.3s ease;
}
.plants-cate-item:nth-child(n+9) {
  display: none;
}
.show-all .plants-cate-item {
  display: flex;
}
.plants-cate-tl {
  flex: 1;
  font-family: "GT Super Text";
  font-size: 16px;
  line-height: 20px;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  overflow: hidden;
  transition: all 0.3s ease;
}
.plants-cate-right {
  display: flex;
  align-items: center;
  gap: 8px;
}
.plants-cate-num {
  color: #999;
  font-family: "Google Sans";
  font-size: 16px;
  line-height: 20px;
  transition: all 0.3s ease;
}
.icon-plants-next {
  width: 20px;
  height: 20px;
  fill: #ccc;
  transition: all 0.3s ease;
}
.plants-cate-item:hover .plants-cate-tl {
  color: #259888;
}
.plants-cate-item:hover .plants-cate-num {
  color: #259888;
}
.plants-cate-item:hover .icon-plants-next {
  fill: #259888;
  transform: translateX(4px);
}
.plants-cate-more {
  background-color: #259888;
  color: #fff;
  margin-top: 16px;
  height: 44px;
  line-height: 44px;
  text-align: center;
  border-radius: 8px;
  margin: 20px auto 0;
  width: 200px;
  cursor: pointer;
}
.plants-cate-item:hover .plants-cate-tl,
.plants-cate-item:hover .plants-cate-num {
  color: #259888;
}
.plants-cate-item:hover .icon-plants-next {
  fill: #259888;
}
.from-source {
  color: #999;
  font-family: "Google Sans";
  font-size: 12px;
  line-height: 16px;
  text-align: right;
  font-style: italic;
}


/* Tablet (>=768px) */
@media screen and (min-width: 768px) {
  .wrapper {
    max-width: 728px;
    margin: 0 auto;
    padding-left: 0;
    padding-right: 0;
  }
  .page-content {
    display: flex;
  }
  .page-left {
    flex: 0 0 728px;
    width: 728px;
  }
  .page-right {
    flex: 1;
    padding-left: 72px;
  }
  .hl-menu-toggle {
    display: none;
  }
  .hl-nav-wrapper {
    display: block !important;
    position: static;
    padding: 0;
    overflow: visible;
  }
  .hl-nav {
    flex-direction: row;
    align-items: center;
    gap: 0;
  }
  .hl-nav-item {
    border: none;
  }
  .hl-nav-link {
    font-size: 14px;
    padding: 10px 16px;

  }
  .hl-nav-link::after {
    display: none;
  }
  .hl-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 180px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    padding: 16px;
    margin-top: 8px;
    z-index: 200;
    display: block;
  }
  .hl-nav-item:hover .hl-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
  .hl-dropdown-inner {
    padding: 0;
  }
  .hl-dropdown-section a {
    border: none;
    padding: 8px 0;
  }
  .hl-btn-subscribe {
    margin: 0;
    width: auto;
    padding: 10px 20px;
  }

  .hl-header-inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    height: 72px;
    padding: 0;
    max-width: 728px;
  }
  .hl-footer-left {
    flex-direction: row;
    gap: 44px;
  }
  
  .hl-nav-link,
  .hl-btn-subscribe {
    font-size: 14px;
    padding: 10px 16px;
  }
  .hl-main {
    max-width: 728px;
    padding: 32px 16px 0 16px;
  }
  .hl-latest-icon {
    width: 64px;
    height: 64px;
  }
  .hl-latest-list {
    flex-direction: column;
    gap: 24px;
  }
  .hl-latest-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  .hl-latest-card {
    gap: 16px;
  }

  /* 404 page */
  /* 404 page */
  .not-find {
    margin-top: 72px;
    margin-bottom: 72px;
  }
  .icon-not {
    width: 514px;
    height: 162px;
  }
  .not-find h1 {
    font-size: 36px;
    line-height: 44px;
    margin-bottom: 12px;
  }
  .not-find p {
    font-size: 18px;
  }
  
  .hl-editors {
    margin-bottom: 40px;
  }
  .hl-editors-tl {
    font-size: 32px;
    line-height: 40px;
    margin: 32px 0;
  }
  .hl-editors-list {
    grid-template-columns: repeat(2, 1fr);
  }
  .hl-editors-card-title {
    font-size: 18px;
    line-height: 24px;
  }
  .hl-footer-inner {
    max-width: 728px;
  }
  .hl-footer-main {
    flex-direction: row;
    justify-content: space-between;
    gap: 64px;
  }
  .hl-footer-brand-section {
    flex: 0 0 300px;
  }
  .hl-footer-nav {
    display: flex;
    gap: 64px;
  }
  .hl-footer-bottom {
    flex-direction: row;
    justify-content: space-between;
    padding: 32px 0;
  }
  .partner-logo {
    height: 40px;
  }

  .hl-footer-subscribe {
    display: flex;
  }

  .hl-latest {
    margin-bottom: 64px;
  }
  .hl-latest-text {
    font-size: 32px;
  }
  .hl-latest-icon {
    width: 48px;
    height: 48px;
  }
  
  .hl-latest-card-title {
    font-size: 16px;
    line-height: 20px;
  }
  .hl-latest-feature-title {
    font-size: 32px;
  }

  .hl-design {
    margin-bottom: 40px;
  }
  .hl-design-tl {
    font-size: 32px;
    line-height: 40px;
  }
  .icon-next {
    width: 32px;
    height: 32px;
  }
  .hl-design-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
  .hl-design-card {
    padding-bottom: 24px;
  }
  
  .hl-design-card-title {
    font-size: 18px;
    line-height: 24px;
  }

  /* footer */
  .hl-footer-logo {
    justify-content: flex-start;
  }
  .hl-footer-links {
    flex-direction: column;
    justify-content: flex-start;
  }
  .hl-footer-partners { 
    flex-direction: column;
  }
  .partner-link {
    width: 150px;
    height: 50px;
  }

  /* article */
  .page-tl {
    font-size: 32px;
    line-height: 40px;
    margin-top: 40px;
    margin-bottom: 32px;
  }
  .page-tl + .more-list {
    margin-top: -16px;
  }
  .page-header {
    margin-top: 40px;
    margin-bottom: 32px;
  }
  .page-header .page-tl {
    margin-top: 12px;
  }
  .article-img, .article-key {
    margin: 32px 0;
  }
  .article-key {
    padding: 48px;
  }
  .article-key > h3 {
    font-size: 28px;
  }
  .article-key > img {
    width: 256px;
    height: 56px;
  }
  .article-info {
    gap: 32px;
    margin-top: 32px;
  }
  .article-info > img,.info-image img:first-child,.detail-image {
    max-height: 400px;
    object-fit: cover;
    border-radius: 4px;
  }

  .right-key {
    padding: 80px 20px 44px 20px;
  }
  
  .article-info .title h2, .article-info h2 {
    font-size: 28px;
    line-height: 32px;
  }
  .article-info .title .order {
    width: 80px;
    height: 96px;
    padding: 16px;
  }
  .article-info .title .order span:first-child {
    font-size: 40px;
  }
  .article-info .title .order span:last-child {
    font-size: 20px;
    line-height: 24px;
  }
  .article-info p + ul,.article-info p + ol {
    margin-top: -20px;
  }
  .article-more {
    flex-direction: row;
    align-items: center;
  }
  .more-tl {
    font-size: 20px;
  }
  .article-key-con {
    gap: 32px;
  }
  .article-key-tl {
    font-size: 18px;
    line-height: 26px;
  }
  .related-ls {
    grid-template-columns: repeat(3, 1fr);
  }
  .cate-related-ads {
    margin-top: 32px;
  }
  .related-con {
    flex-direction: column;
    gap: 12px;
    padding-bottom: 0;
    border-bottom: none;
  }
  .related-pic {
    flex: auto;
    width: 100%;
    height: 154px;
  }
  .related-tl {
    font-size: 18px;
    line-height: 24px;
    margin-top: 4px;
    margin-bottom: 12px;
  }
  .related-ads {
    grid-column: 1 / -1;
    margin-bottom: 12px;
  }

  /* cate */
  .cate-img {
    width: 48px;
    height: 48px;
  }
  .icon-cate-arrow {
    display: block;
  }
  .trending-block {
    flex-direction: row;
    padding-bottom: 0;
  }
  .trending-pic { 
    flex: 0 0 340px;
    height: 241px;
    border-radius: 4px 0 0 4px;
  }
  .trending-info {
    margin-top: 0;
  }
  .trending-tl {
    font-size: 24px;
    line-height: 32px;
  }
  /* a-z */
  .page-text {
    font-size: 16px;
    line-height: 28px;
    margin-bottom: 32px;
    margin-top: -16px;
  }
  .plants-cate-ls {
    grid-template-columns: repeat(3, 1fr);
  }
  .plants-cate-item {
    padding: 18px 16px;
  }
  .plants-cate-item:nth-child(n+9) {
    display: flex;
  }
  .plants-cate-item:nth-child(n+13) {
    display: none;
  }
  .show-all .plants-cate-item {
    display: flex;
  }
  .back-to-top {
    display: none;
  }
  .image-viewer-container {
    width: auto;
    max-width: 90%;
    max-height: 90vh;
  }
  .a-z-ls {
    grid-template-columns: repeat(9, 1fr);
  }
  .a-z-item {
    font-size: 18px;
    line-height: 34px;
  }
  
}

/* Desktop (>=1200px) */
@media screen and (min-width: 1200px) {
  .page-right {
    display: block;
  }
  .wrapper {
    max-width: 1100px;
  }

  .hl-logo-wrapper {
    flex: 0 0 125px;
  }
  .hl-logo {
    width: 125px;
  }
  .hl-dropdown {
    min-width: 200px;
  }
  .hl-btn-subscribe {
    display: block;
    cursor: pointer;
  }
  .subscribe-block.active {
    display: block;
  }

  .hl-header-inner,
  .hl-main,
  .hl-footer-inner {
    max-width: 1100px;
  }
  .hl-latest-content {
    flex-direction: row;
    gap: 32px;
  }
  .hl-latest-list {
    flex: 1 1 0;
    min-width: 0;
    grid-template-columns: repeat(1, 1fr);
  }
  .hl-latest-feature {
    flex: 0 0 345px;
  }
  .hl-editors {
    margin-bottom: 64px;
  }
  .hl-editors-list {
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
  }
  .hl-nav {
    gap: 12px;
  }

  .hl-design {
    margin-bottom: 64px;
  }
  .hl-design-list {
    gap: 32px;
  }
  .hl-design-card {
    gap: 24px;
    padding-bottom: 32px;
  }
  .hl-design-card-image {
    flex: 0 0 180px;
    height: 140px;
  }
  .hl-design-card-info {
    gap: 12px;
  }

  /* index */
  .hl-latest-tl {
    flex-direction: column;
    gap: 8px;
    margin-top: 40px;
    margin-bottom: 56px;
  }
  .hl-latest-icon {
    width: 127px;
    height: 80px;
    top: 0;
  }
  .hl-latest-text {
    font-size: 48px;
    letter-spacing: 3.84px;
  }

  .hl-editors-tl {
    font-size: 36px;
    line-height: 40px;
    letter-spacing: 2.88px;
    margin-top: 72px;
    margin-bottom: 56px;
  }
  .hl-design-tl {
    font-size: 36px;
    line-height: 40px;
    letter-spacing: 2.88px;
  }
  .hl-design-meta {
    margin-top: 72px;
    margin-bottom: 56px;
  }


  .hl-latest-card-image {
    flex: 0 0 100px;
    height: 82px;
  }
  .hl-latest-card img {
    width: 100px;
    height: 82px;
    border-radius: 4px;
  }

  .hl-footer {
    padding-top: 64px;
    margin-top: 64px;
  }
  .hl-footer-left {
    gap: 86px;
  }
  .hl-footer-main {
    margin-bottom: 40px;
  }
  .hl-footer-bottom {
    padding-top: 40px;
    padding-bottom: 64px;
  }
  .hl-footer-partners {
    gap: 16px;
  }
  .hl-footer-links a {
    letter-spacing: 2.8px;
  }
  .hl-footer-links:first-child{
    display: flex;
  }
  
  .hl-footer-inner {
    max-width: 1100px;
  }
  .hl-footer-main,
  .hl-footer-nav,
  .hl-footer-info {
    gap: 86px;
  }
  .hl-footer-brand-section {
    flex: 0 0 360px;
  }
  .hl-footer-logo img {
    height: 64px;
  }
  .partner-logo {
    height: 48px;
  }
  .partner-link {
    width: 200px;
    height: 100px;
  }


  .hl-latest-list:first-child {
    display: flex;
  }
}

