* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Microsoft YaHei", Arial, sans-serif;
  background: #f5f7fa;
  color: #333;
  line-height: 1.6;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s;
}

a:hover {
  color: #00a2ff;
}

img {
  max-width: 100%;
}

ul, li {
  list-style: none;
}
.home-container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 20px;
}

.lawyer-profile {
  background: linear-gradient(135deg, #667eea 0%, #2752a0 100%);
  border-radius: 16px;
  padding: 40px;
  margin-bottom: 30px;
  color: #fff;
  box-shadow: 0 8px 24px rgba(102, 126, 234, 0.3);
  position: relative;
  overflow: hidden;
}

.lawyer-profile::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
  animation: rotate 20s linear infinite;
}

@keyframes rotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.profile-content {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 40px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.profile-avatar {
  width: 150px;
  /*height: 150px;
  border-radius: 50%;*/
  overflow: hidden;
  border: 5px solid rgba(255,255,255,0.3);
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
  transition: all 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.profile-avatar:hover {
  transform: scale(1.05);
  border-color: #ffd700;
}

.profile-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.profile-info {
  flex: 1;
}

.profile-name {
  font-size: 32px;
  font-weight: bold;
  margin: 0 0 10px;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
}

.profile-title {
  font-size: 16px;
  opacity: 0.9;
  margin: 0 0 20px;
}

.profile-details {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  font-size: 14px;
}

.detail-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  background: rgba(255,255,255,0.1);
  border-radius: 6px;
  backdrop-filter: blur(10px);
  transition: all 0.3s;
}

.detail-item:hover {
  background: rgba(255,255,255,0.2);
  transform: translateX(5px);
}

.detail-icon {
  font-size: 18px;
}

.profile-actions {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.action-button {
  padding: 15px 30px;
  background: #fff;
  color: #667eea;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s;
  text-decoration: none;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.action-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.2);
  background: #ffd700;
  color: #333;
}

.action-button.primary {
  background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
  color: #333;
}

.expertise-section {
  margin-top: 25px;
  padding-top: 25px;
  border-top: 2px solid rgba(255,255,255,0.2);
}

.expertise-title {
  font-size: 18px;
  font-weight: bold;
  margin: 0 0 15px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.expertise-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.expertise-tag {
  padding: 8px 16px;
  background: rgba(255,255,255,0.15);
  border-radius: 20px;
  font-size: 14px;
  transition: all 0.3s;
  cursor: pointer;
}

.expertise-tag:hover {
  background: #fff;
  color: #667eea;
  transform: scale(1.05);
}

.content-sections {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  margin-bottom: 30px;
}

.section-module {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
  overflow: hidden;
  transition: all 0.3s;
}

.section-module:hover {
  box-shadow: 0 4px 20px rgba(0,0,0,0.12);
  transform: translateY(-5px);
}

.section-header {
  background: linear-gradient(135deg, #667eea 0%, #2752a0 100%);
  padding: 15px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.section-title {
  color: #fff;
  font-size: 18px;
  font-weight: bold;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 10px;
}

.section-icon {
  font-size: 22px;
}

.section-more {
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  opacity: 0.9;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  gap: 5px;
}

.section-more:hover {
  opacity: 1;
  transform: translateX(3px);
}

.section-body {
  padding: 20px;
}

.featured-item {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #eee;
}

.featured-item:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.featured-image {
  width: 120px;
  height: 90px;
  border-radius: 8px;
  overflow: hidden;
  flex-shrink: 0;
}

.featured-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}

.featured-item:hover .featured-image img {
  transform: scale(1.1);
}

.featured-content {
  flex: 1;
}

.featured-title {
  font-size: 16px;
  font-weight: bold;
  margin: 0 0 8px;
  line-height: 1.4;
}

.featured-title a {
  color: #333;
  text-decoration: none;
  transition: color 0.3s;
}

.featured-title a:hover {
  color: #667eea;
}

.featured-desc {
  color: #666;
  font-size: 13px;
  line-height: 1.6;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.article-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.article-item {
  padding: 12px 0;
  border-bottom: 1px dashed #eee;
  transition: all 0.3s;
}

.article-item:last-child {
  border-bottom: none;
}

.article-item:hover {
  padding-left: 10px;
  background: #f8f9fa;
  margin: 0 -20px;
  padding: 12px 20px;
  border-radius: 6px;
}

.article-link {
  color: #333;
  text-decoration: none;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: color 0.3s;
}

.article-link::before {
  content: '›';
  color: #667eea;
  font-size: 18px;
  transition: transform 0.3s;
}

.article-item:hover .article-link {
  color: #667eea;
}

.article-item:hover .article-link::before {
  transform: translateX(3px);
}

.full-width-section {
  margin-bottom: 30px;
}

@media (max-width: 768px) {
  .profile-content {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 25px;
  }
  
  .profile-avatar {
    margin: 0 auto;
    width: 120px;
    /*height: 120px;*/
  }
  
  .profile-details {
    grid-template-columns: 1fr;
  }
  
  .profile-actions {
    flex-direction: row;
    justify-content: center;
  }
  
  .content-sections {
    grid-template-columns: 1fr;
  }
  
  .lawyer-profile {
    padding: 25px;
  }
  
  .profile-name {
    font-size: 24px;
  }
  
  .expertise-tags {
    justify-content: center;
  }
}

.fade-in {
  animation: fadeIn 0.6s ease-in;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.section-module {
  animation: slideUp 0.5s ease-out;
  animation-fill-mode: both;
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/*top*/
.modern-header {
  position: relative;
  width: 100%;
  z-index: 1000;
}

.top-announcement {
  background: linear-gradient(90deg, #ff6b6b 0%, #ee5a6f 100%);
  color: #ffffff;
  padding: 10px 20px;
  font-size: 14px;
  transition: all 0.3s;
}

.announcement-content {
  max-width: 1300px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  position: relative;
}

.announcement-icon {
  font-size: 16px;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.2);
  }
}

.announcement-text {
  flex: 1;
  text-align: center;
}

.announcement-close {
  background: rgba(255, 255, 255, 0.2);
  border: none;
  color: #ffffff;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 18px;
  line-height: 1;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.announcement-close:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: rotate(90deg);
}

.header-top {
  background: #ffffff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  padding: 20px 0;
}
.containert {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 20px;
}

.header-left {
  display: flex;
  align-items: center;
  gap: 20px;
  flex: 1;
}

.brand-logo-wrapper {
  flex-shrink: 0;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  overflow: hidden;
}

.brand-logo {
  max-width: 100px;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: all 0.3s;
}

.brand-logo:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.brand-info {
  flex: 1;
}

.brand-info {
  flex: 1;
}

.site-title {
  margin: 0 0 5px;
  font-size: 28px;
  font-weight: bold;
}

.site-title a {
  color: #1e3c72;
  text-decoration: none;
  background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  transition: all 0.3s;
}

.site-title a:hover {
  opacity: 0.8;
}

.site-slogan {
  margin: 0;
 font-size: 16px;
  color: #3c61b9;
}

.header-right {
  display: flex;
  gap: 20px;
  align-items: center;
  flex-shrink: 0;
}


.header-contact {
  display: flex;
  gap: 20px;
  align-items: center;
}

.contact-qr {
  position: relative;
}

.qr-code-box {
  text-align: center;
  padding: 10px;
  background: #f8f9fa;
  border-radius: 8px;
  transition: all 0.3s;
}

.qr-code-box:hover {
  background: #e9ecef;
  transform: translateY(-5px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.qr-image {
  width: 80px;
  height: 80px;
  border-radius: 6px;
  display: block;
}

.qr-label {
  display: block;
  font-size: 12px;
  color: #666;
  margin-top: 8px;
}

.main-navigation {
  background:linear-gradient(135deg, #667eea 0%, #2752a0 100%);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  position: sticky;
  padding-top:5px;
  padding-bottom:5px;
  top: 0;
}

.nav-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 10px;
}

.menu-bar {
  width: 25px;
  height: 3px;
  background: #ffffff;
  border-radius: 2px;
  transition: all 0.3s;
}

.nav-menu {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 5px;
  flex: 1;
}

.nav-item {
  position: relative;
}

.nav-link {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 15px 18px;
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  transition: all 0.3s;
  position: relative;
  white-space: nowrap;
}

.nav-link:hover {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.1);
}

.nav-item.active .nav-link,
.nav-item.current .nav-link {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.15);
}

.nav-underline {
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 3px;
  background: #ffd700;
  transition: all 0.3s;
  transform: translateX(-50%);
}

.nav-link:hover .nav-underline,
.nav-item.active .nav-underline,
.nav-item.current .nav-underline {
  width: 60%;
}

.home-item .nav-icon {
  font-size: 16px;
}

.nav-search {
  position: relative;
  margin-left: 20px;
}

.search-toggle {
  background: rgba(255, 255, 255, 0.1);
  border: none;
  color: #ffffff;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 18px;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.search-toggle:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: rotate(90deg);
}

.search-box {
  position: absolute;
  right: 0;
  top: 50px;
  background: #ffffff;
  padding: 12px;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s;
  min-width: 280px;
}

.search-box.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.search-box form {
  display: flex;
  gap: 8px;
  align-items: center;
}

.search-input {
  flex: 1;
  padding: 8px 12px;
  border: 2px solid #e0e0e0;
  border-radius: 6px;
  font-size: 14px;
  outline: none;
  transition: all 0.3s;
  height: 38px;
}

.search-input:focus {
  border-color: #1e3c72;
}

.search-submit {
  padding: 0;
  width: 50px;
  height: 38px;
  background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
  color: #ffffff;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.3s;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  line-height: 1.2;
}

.search-text {
  display: block;
  font-size: 13px;
}

.search-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(30, 60, 114, 0.3);
}

@media (max-width: 768px) {
  .header-top {
    padding: 15px 0;
  }
  
  .header-brand {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }
  
  .brand-logo {
    /*max-width: 80px;*/
  }
  
  .site-title {
    font-size: 22px;
  }
  
  .site-slogan {
    font-size: 12px;
  }
  
  .header-contact {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: flex;
  }
  
  .nav-menu {
    position: fixed;
    top: 0;
    left: -100%;
    width: 80%;
    height: 100vh;
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    flex-direction: column;
    padding: 60px 20px 20px;
    gap: 0;
    transition: left 0.3s;
    overflow-y: auto;
    z-index: 999;
  }
  
  .nav-menu.active {
    left: 0;
  }
  
  .nav-link {
    padding: 15px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
  
  .nav-search {
    margin-left: auto;
  }
  
  .search-box {
    /*right: -100px;*/
    min-width: 200px;
  }
  
  .announcement-content {
    font-size: 12px;
  }
}
/*foot*/
.modern-footer {
  position: relative;
  background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
  color: #ffffff;
  margin-top: 50px;
}

.footer-wave {
  position: absolute;
  top: -1px;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
}

.footer-wave svg {
  position: relative;
  display: block;
  width: calc(100% + 1.3px);
  height: 60px;
}

.footer-wave path {
  fill: #ffffff;
}

.footer-content {
  padding: 80px 20px 30px;
  max-width: 1300px;
  margin: 0 auto;
}

.footer-main {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-section {
  animation: fadeInUp 0.6s ease-out;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.brand-logo img {
  max-width: 120px;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.brand-name {
  font-size: 22px;
  font-weight: bold;
  margin: 15px 0 8px;
  color: #ffffff;
}

.brand-slogan {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  margin: 0 0 20px;
}

.brand-contact {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.9);
  transition: all 0.3s;
}

.contact-item:hover {
  color: #ffffff;
  transform: translateX(5px);
}

.contact-icon {
  font-size: 18px;
}

.section-title {
  font-size: 18px;
  font-weight: 600;
  margin: 0 0 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid rgba(255, 255, 255, 0.3);
  position: relative;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 50px;
  height: 2px;
  background: #ffd700;
}

.nav-listb {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.nav-itemb {
  margin: 0;
}

.nav-itemb a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 6px;
  transition: all 0.3s;
}

.nav-itemb a:hover {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.1);
  transform: translateX(5px);
}

.nav-arrowb {
  font-size: 18px;
  transition: transform 0.3s;
}

.nav-itemb a:hover .nav-arrowb {
  transform: translateX(3px);
}

.qrcode-boxb {
  background: rgba(255, 255, 255, 0.1);
  padding: 15px;
  border-radius: 12px;
  text-align: center;
  backdrop-filter: blur(10px);
  margin-bottom: 15px;
  transition: all 0.3s;
}

.qrcode-boxb:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: scale(1.02);
}

.qrcode-boxb img {
  width: 140px;
  height: 140px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.qrcode-tipb {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.7);
  margin: 10px 0 0;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 15px;
}

.social-icon {
  width: 45px;
  height: 45px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  transition: all 0.3s;
  text-decoration: none;
}

.social-icon:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-5px) rotate(360deg);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 25px;
}

.bottom-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
}

.copyright-info p {
  margin: 5px 0;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
}

.beian a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  transition: all 0.3s;
}

.beian a:hover {
  color: #ffffff;
}

.beian-icon {
  font-size: 14px;
}

.footer-tech p {
  margin: 0;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
}

.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #667eea 0%, #2752a0 100%);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(102, 126, 234, 0.4);
  transition: all 0.3s;
  opacity: 0;
  visibility: hidden;
  z-index: 999;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(102, 126, 234, 0.6);
}

.top-arrow {
  font-size: 20px;
  line-height: 1;
}

.top-text {
  font-size: 10px;
  margin-top: 2px;
}

@media (max-width: 768px) {
  .footer-main {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .footer-content {
    padding: 70px 15px 20px;
  }
  
  .nav-listb {
    /*grid-template-columns: 1fr;*/
  }
  
  .bottom-content {
    flex-direction: column;
    text-align: center;
  }
  
  .back-to-top {
    bottom: 20px;
    right: 20px;
    width: 45px;
    height: 45px;
  }
}
/*adout*/
.about-container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 20px;
}

.breadcrumb {
  background: linear-gradient(135deg, #667eea 0%, #2752a0 100%);
  color: #fff;
  padding: 15px 25px;
  border-radius: 8px;
  margin-bottom: 30px;
  font-size: 14px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.breadcrumb a {
  color: #fff;
  text-decoration: none;
  transition: opacity 0.3s;
}

.breadcrumb a:hover {
  opacity: 0.8;
}

.about-content-wrapper {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 30px;
  margin-bottom: 30px;
}

.about-main {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
}

.about-main:hover {
  box-shadow: 0 4px 20px rgba(0,0,0,0.12);
}

.about-header {
  background: linear-gradient(135deg, #667eea 0%, #2752a0 100%);
  padding: 20px;
  color: #fff;
}

.about-title {
  font-size: 24px;
  font-weight: bold;
  margin: 0;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
}

.about-body {
  padding: 30px;
  line-height: 1.8;
  font-size: 16px;
  color: #333;
}

.about-body p {
  margin-bottom: 15px;
  text-align: justify;
}

.about-body img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin: 15px 0;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.about-sidebar {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

@media (max-width: 768px) {
  .about-content-wrapper {
    grid-template-columns: 1fr;
  }
  
  .about-title {
    font-size: 22px;
  }
  
  .about-body {
    padding: 20px;
    font-size: 15px;
  }
}
/*right*/
.modern-sidebar {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.sidebar-module {
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  transition: all 0.3s ease;
}

.sidebar-module:hover {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
  transform: translateY(-2px);
}

.module-header {
  background: linear-gradient(135deg, #667eea 0%, #2752a0 100%);
  padding: 15px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.module-titler {
  color: #ffffff;
  font-size: 16px;
  font-weight: 600;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 8px;
}

.title-iconr {
  font-size: 18px;
}

.more-linkr {
  color: #ffffff;
  text-decoration: none;
  font-size: 13px;
  opacity: 0.9;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  gap: 4px;
}

.more-linkr:hover {
  opacity: 1;
  transform: translateX(3px);
}

.arrowr {
  transition: transform 0.3s;
}

.more-linkr:hover .arrowr {
  transform: translateX(3px);
}

.module-bodyr {
  padding: 20px;
}

.featuredr-card {
  margin-bottom: 20px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: all 0.3s;
}

.featuredr-card:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
  transform: scale(1.02);
}

.featuredr-image {
  position: relative;
  width: 100%;
  height: 180px;
  overflow: hidden;
}

.featuredr-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.featuredr-card:hover .featuredr-image img {
  transform: scale(1.1);
}

.image-overlayr {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom, transparent 0%, rgba(0,0,0,0.3) 100%);
}

.featuredr-content {
  padding: 15px;
  background: #f8f9fa;
}

.featuredr-title {
  margin: 0 0 10px 0;
  font-size: 15px;
  line-height: 1.5;
}

.featuredr-title a {
  color: #333;
  text-decoration: none;
  transition: color 0.3s;
}

.featuredr-title a:hover {
  color: #667eea;
}

.featuredr-desc {
  color: #666;
  font-size: 13px;
  line-height: 1.6;
  margin: 0 0 12px 0;
}

.read-more-btn {
  display: inline-block;
  color: #667eea;
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  transition: all 0.3s;
}

.read-more-btn:hover {
  color: #2752a0;
  transform: translateX(5px);
}

.article-listr {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.list-itemr {
  display: flex;
  align-items: center;
  padding: 12px;
  background: #f8f9fa;
  border-radius: 6px;
  transition: all 0.3s;
  cursor: pointer;
}

.list-itemr:hover {
  background: #e9ecef;
  transform: translateX(5px);
}

.item-numberr {
  width: 30px;
  height: 30px;
  background: linear-gradient(135deg, #667eea 0%, #2752a0 100%);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 12px;
  font-weight: bold;
  margin-right: 12px;
  flex-shrink: 0;
}

.item-content {
  flex: 1;
}

.item-content a {
  color: #333;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s;
}

.item-content a:hover {
  color: #667eea;
}

.item-arrowr {
  color: #999;
  font-size: 18px;
  transition: all 0.3s;
}

.list-itemr:hover .item-arrowr {
  color: #667eea;
  transform: translateX(3px);
}

.sidebar-ad {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  transition: all 0.3s;
}

.sidebar-ad:hover {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
}

.ad-container {
  width: 100%;
}

.ad-container img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s;
}

.sidebar-ad:hover .ad-container img {
  transform: scale(1.05);
}

.news-itemr {
  display: flex;
  align-items: flex-start;
  padding: 15px 0;
  border-bottom: 1px solid #eee;
  transition: all 0.3s;
}

.news-itemr:last-child {
  border-bottom: none;
}

.news-itemr:hover {
  background: #f8f9fa;
  margin: 0 -20px;
  padding: 15px 20px;
  border-radius: 6px;
}

.news-dot {
  width: 8px;
  height: 8px;
  background: linear-gradient(135deg, #667eea 0%, #2752a0 100%);
  border-radius: 50%;
  margin-top: 6px;
  margin-right: 12px;
  flex-shrink: 0;
  transition: all 0.3s;
}

.news-itemr:hover .news-dot {
  transform: scale(1.3);
}

.news-contentr {
  flex: 1;
}

.news-titler {
  margin: 0 0 6px 0;
  font-size: 14px;
  line-height: 1.5;
}

.news-titler a {
  color: #333;
  text-decoration: none;
  transition: color 0.3s;
}

.news-titler a:hover {
  color: #667eea;
}

.news-summary {
  color: #999;
  font-size: 12px;
  line-height: 1.5;
  margin: 0;
}

.news-timer {
  color: #bbb;
  font-size: 12px;
  margin-left: 10px;
  white-space: nowrap;
}

@media (max-width: 768px) {
  .modern-sidebar {
    gap: 15px;
  }
  
  .module-header {
    padding: 12px 15px;
  }
  
  .module-bodyr {
    padding: 15px;
  }
  
  .featuredr-image {
    height: 150px;
  }
}
/*link*/
.modern-links-section {
  margin: 30px 0;
  animation: fadeInUp 0.6s ease-out;
}

.banner-wrapper {
  margin-bottom: 30px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  position: relative;
}

.banner-link {
  display: block;
  position: relative;
  overflow: hidden;
}

.banner-image {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s;
}

.banner-link:hover .banner-image {
  transform: scale(1.05);
}

.banner-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom, transparent 60%, rgba(0,0,0,0.3) 100%);
  opacity: 0;
  transition: opacity 0.3s;
}

.banner-link:hover .banner-overlay {
  opacity: 1;
}

.links-container {
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  padding: 30px;
  transition: all 0.3s;
}

.links-container:hover {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
}

.links-header {
  text-align: center;
  margin-bottom: 30px;
  padding-bottom: 20px;
  border-bottom: 2px solid #f0f0f0;
  position: relative;
}

.links-titlel {
  font-size: 24px;
  font-weight: bold;
  color: #1e3c72;
  margin: 0 0 15px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.title-iconl {
  font-size: 28px;
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-5px);
  }
}

.title-decoration {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.deco-line {
  width: 50px;
  height: 2px;
  background: linear-gradient(90deg, transparent, #667eea, transparent);
}

.deco-dot {
  width: 8px;
  height: 8px;
  background: linear-gradient(135deg, #667eea 0%, #2752a0 100%);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.5);
    opacity: 0.7;
  }
}

.links-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 15px;
  margin-bottom: 30px;
}

.link-cardl {
  position: relative;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  border-radius: 10px;
  padding: 15px 20px;
  text-decoration: none;
  overflow: hidden;
  transition: all 0.3s;
  border: 2px solid transparent;
}

.link-cardl::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
  transition: left 0.5s;
}

.link-cardl:hover::before {
  left: 100%;
}

.link-cardl:hover {
  background: linear-gradient(135deg, #667eea 0%, #2752a0 100%);
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(102, 126, 234, 0.3);
  border-color: rgba(255, 255, 255, 0.3);
}

.link-cardl-inner {
  display: flex;
  align-items: center;
  gap: 12px;
  position: relative;
  z-index: 1;
}

.link-iconl {
  width: 40px;
  height: 40px;
  background: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: all 0.3s;
  flex-shrink: 0;
}

.link-cardl:hover .link-iconl {
  transform: rotate(360deg) scale(1.1);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.link-info {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.link-name {
  color: #333;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.3s;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.link-cardl:hover .link-name {
  color: #ffffff;
}

.link-arrow {
  color: #999;
  font-size: 18px;
  transition: all 0.3s;
  flex-shrink: 0;
}

.link-cardl:hover .link-arrow {
  color: #ffffff;
  transform: translateX(5px);
}

.links-footer {
  text-align: center;
  padding-top: 20px;
  border-top: 2px solid #f0f0f0;
}

.footerl-text {
  color: #999;
  font-size: 13px;
  margin: 0;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: #f8f9fa;
  border-radius: 20px;
  transition: all 0.3s;
}

.footerl-text:hover {
  background: #e9ecef;
  color: #666;
}

.footerl-icon {
  font-size: 16px;
}

@media (max-width: 768px) {
  .links-container {
    padding: 20px 15px;
  }
  
  .links-titlel {
    font-size: 20px;
  }
  
  .links-grid {
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 10px;
  }
  
  .link-cardl {
    padding: 12px 15px;
  }
  
  .link-iconl {
    width: 35px;
    height: 35px;
    font-size: 18px;
  }
  
  .link-name {
    font-size: 13px;
  }
}

@media (max-width: 480px) {
  .links-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
/*news*/
.news-container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 20px;
}

.breadcrumb {
  background: linear-gradient(135deg, #667eea 0%, #2752a0 100%);
  color: #fff;
  padding: 15px 25px;
  border-radius: 8px;
  margin-bottom: 30px;
  font-size: 14px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.breadcrumb a {
  color: #fff;
  text-decoration: none;
  transition: opacity 0.3s;
}

.breadcrumb a:hover {
  opacity: 0.8;
}

.news-content-wrapper {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 30px;
  margin-bottom: 30px;
}

.news-main {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
  overflow: hidden;
}

.news-header {
  background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
  padding: 30px;
  color: #fff;
  text-align: center;
}

.news-title {
  font-size: 28px;
  font-weight: bold;
  margin: 0;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
}

.news-stats {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-top: 15px;
  font-size: 14px;
  opacity: 0.9;
}

.news-listn {
  padding: 30px;
}

.news-item {
  display: flex;
  gap: 20px;
  padding: 25px;
  margin-bottom: 20px;
  background: #f8f9fa;
  border-radius: 10px;
  border-left: 4px solid transparent;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}

.news-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 0;
  background: linear-gradient(135deg, #667eea 0%, #2752a0 100%);
  transition: height 0.3s;
}

.news-item:hover::before {
  height: 100%;
}

.news-item:hover {
  background: #fff;
  box-shadow: 0 4px 16px rgba(0,0,0,0.1);
  transform: translateX(5px);
  border-left-color: #667eea;
}
.news-image {
  width: 180px;
  height: 120px;
  border-radius: 10px;
  overflow: hidden;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: all 0.3s;
}

.news-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.news-item:hover .news-image {
  box-shadow: 0 4px 16px rgba(102, 126, 234, 0.3);
}

.news-item:hover .news-image img {
  transform: scale(1.1);
}
.news-item:last-child {
  margin-bottom: 0;
}

.news-number {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #667eea 0%, #2752a0 100%);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  font-size: 20px;
  font-weight: bold;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
}

.news-content {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}


.news-item-title {
  margin: 0 0 12px 0;
  font-size: 18px;
  line-height: 1.5;
}

.news-item-title a {
  color: #333;
  text-decoration: none;
  transition: all 0.3s;
  display: block;
}

.news-item-title a:hover {
  color: #667eea;
}

.news-item-desc {
  color: #666;
  font-size: 14px;
  line-height: 1.8;
  margin: 0 0 15px 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.news-item-meta {
  display: flex;
  gap: 20px;
  font-size: 13px;
  color: #999;
}

.meta-item {
  display: flex;
  align-items: center;
  gap: 5px;
}

.meta-icon {
  font-size: 16px;
}

.pagination-wrapper {
  padding: 30px;
  text-align: center;
  border-top: 1px solid #eee;
}

.pagination {
  display: inline-flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
}

.pagination a,
.pagination span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 12px;
  background: #f8f9fa;
  color: #333;
  text-decoration: none;
  border-radius: 8px;
  font-size: 14px;
  transition: all 0.3s;
  border: 2px solid transparent;
  margin-left: 3px;
  margin-right: 3px;
}

.pagination a:hover {
  background: #667eea;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
}

.pagination .fcur {
  background: linear-gradient(135deg, #667eea 0%, #2752a0 100%);
  color: #fff;
  border-color: #667eea;
  font-weight: bold;
}

.news-sidebar {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

@media (max-width: 768px) {
	.pagination a{margin-bottom:5px;}
  .news-content-wrapper {
    grid-template-columns: 1fr;
  }
  
  .news-title {
    font-size: 22px;
  }
  
  .news-item {
    flex-direction: column;
    padding: 20px;
  }
  
  .news-number {
    width: 40px;
    height: 40px;
    font-size: 16px;
  }
  .news-image {
    width: 100%;
    height: 180px;
  }
  
  .news-item-title {
    font-size: 16px;
  }
  
  .news-stats {
    flex-direction: column;
    gap: 10px;
  }
}

.news-item {
  animation: slideInLeft 0.5s ease-out;
  animation-fill-mode: both;
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
/*newdel*/
.article-container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 20px;
}

.article-content-wrapper {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 30px;
  margin-bottom: 30px;
}

.article-main {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
  overflow: hidden;
}

.article-header {
  background: linear-gradient(135deg, #667eea 0%, #2752a0 100%);
  padding: 40px 30px 30px;
  color: #fff;
  position: relative;
}

.article-header::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #ffd700, #ffed4e, #ffd700);
}

.article-title {
  font-size: 26px;
  font-weight: bold;
  margin: 0 0 20px;
  line-height: 1.4;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
}

.article-meta {
  display: flex;
  gap: 25px;
  flex-wrap: wrap;
  font-size: 14px;
  opacity: 0.95;
}

.meta-item {
  display: flex;
  align-items: center;
  gap: 8px;
}

.meta-icon {
  font-size: 18px;
}

.article-body {
  padding: 40px 30px;
  line-height: 2;
  font-size: 16px;
  color: #333;
}

.article-body p {
  margin-bottom: 20px;
  text-align: justify;
  text-indent: 2em;
}

.article-body img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin: 20px 0;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  display: block;
}

.article-body h2,
.article-body h3,
.article-body h4 {
  color: #1e3c72;
  margin: 30px 0 15px;
  padding-left: 15px;
  border-left: 4px solid #667eea;
}

.article-body h2 {
  font-size: 24px;
}

.article-body h3 {
  font-size: 20px;
}

.article-body h4 {
  font-size: 18px;
}

.article-body ul,
.article-body ol {
  margin: 15px 0;
  padding-left: 30px;
}

.article-body li {
  margin-bottom: 10px;
}

.article-body blockquote {
  margin: 20px 0;
  padding: 20px 25px;
  background: #f8f9fa;
  border-left: 4px solid #667eea;
  border-radius: 0 8px 8px 0;
  color: #666;
  font-style: italic;
}

.article-body a {
  color: #667eea;
  text-decoration: none;
  border-bottom: 1px dashed #667eea;
  transition: all 0.3s;
}

.article-body a:hover {
  color: #2752a0;
  border-bottom-color: #2752a0;
}

.article-banner {
  margin: 0 30px 30px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.article-banner a {
  display: block;
}

.article-banner img {
  max-width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s;
  margin:0 auto;
}

.article-banner:hover img {
  transform: scale(1.05);
}

.related-section {
  margin: 0 30px 30px;
  padding: 30px;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  border-radius: 12px;
}

.related-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 25px;
  padding-bottom: 15px;
  border-bottom: 2px solid #dee2e6;
}

.related-icon {
  font-size: 24px;
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-5px);
  }
}

.related-title {
  font-size: 20px;
  font-weight: bold;
  color: #1e3c72;
  margin: 0;
}

.related-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.related-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 15px 20px;
  background: #fff;
  border-radius: 8px;
  transition: all 0.3s;
  text-decoration: none;
  border-left: 3px solid transparent;
}

.related-item:hover {
  background: #667eea;
  transform: translateX(5px);
  box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
  border-left-color: #ffd700;
}

.related-dot {
  width: 8px;
  height: 8px;
  background: #667eea;
  border-radius: 50%;
  margin-top: 8px;
  flex-shrink: 0;
  transition: all 0.3s;
}

.related-item:hover .related-dot {
  background: #fff;
  transform: scale(1.3);
}

.related-text {
  flex: 1;
  color: #333;
  font-size: 15px;
  line-height: 1.6;
  transition: color 0.3s;
}

.related-item:hover .related-text {
  color: #fff;
}

.article-navigation {
  margin: 0 30px 30px;
  padding: 25px;
  background: #f8f9fa;
  border-radius: 12px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.nav-itemd {
  flex: 1;
  min-width: 250px;
  padding: 20px;
  background: #fff;
  border-radius: 10px;
  transition: all 0.3s;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 15px;
  border: 2px solid #e9ecef;
}

.nav-itemd:hover {
  background: linear-gradient(135deg, #667eea 0%, #2752a0 100%);
  border-color: #667eea;
  transform: translateY(-3px);
  box-shadow: 0 4px 16px rgba(102, 126, 234, 0.3);
}

.nav-itemd:hover .nav-labeld,
.nav-itemd:hover .nav-titled {
  color: #fff;
}

.nav-arrowd {
  font-size: 24px;
  color: #667eea;
  transition: all 0.3s;
  flex-shrink: 0;
}

.nav-itemd:hover .nav-arrowd {
  color: #fff;
  transform: scale(1.2);
}

.nav-contentd {
  flex: 1;
}

.nav-labeld {
  font-size: 13px;
  color: #999;
  margin-bottom: 8px;
  transition: color 0.3s;
}

.nav-titled {
  font-size: 15px;
  color: #333;
  line-height: 1.5;
  transition: color 0.3s;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.article-actions {
  position: fixed;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 999;
}

.action-btnd {
  width: 50px;
  height: 50px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.1);
  cursor: pointer;
  transition: all 0.3s;
  border: none;
}

.action-btnd:hover {
  background: #667eea;
  transform: scale(1.1);
  box-shadow: 0 4px 16px rgba(102, 126, 234, 0.4);
}

@media (max-width: 768px) {
  .article-content-wrapper {
    grid-template-columns: 1fr;
  }
  
  .article-title {
    font-size: 21px;
  }
  
  .article-body {
    padding: 25px 20px;
    font-size: 15px;
  }
  
  .related-section,
  .article-navigation {
    margin: 0 10px 10px;
    padding: 10px;
  }
  
  .article-actions {
    display: none;
  }
  
  .article-meta {
    flex-direction: column;
    gap: 10px;
  }
  
  .article-navigation {
    flex-direction: column;
  }
  
  .nav-itemd {
    min-width: 100%;
  }
}
.section-module {
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 450px;
}

.section-body {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.article-list {
  flex: 1;
}

.content-sections {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  margin-bottom: 30px;
  align-items: stretch;
}

.full-width-section {
  grid-column: 1 / -1;
}

@media (max-width: 768px) {
  .content-sections {
    grid-template-columns: 1fr;
  }
  
  .full-width-section {
    grid-column: auto;
  }
  .home-container {
  padding: 10px;
}
.site-slogan {
 font-size: 14px;
}
.about-container {
  padding: 10px;
}
.news-container {
  padding: 10px;
}
.article-container {
  padding: 10px;
}
.article-header {
  padding: 40px 15px 15px;
}
}