/* UZEN Works Page Styles */

/* Ultra Large Desktop (2560px 이상) */
@media (min-width: 2560px) {
  .hero-container {
    max-width: 2400px;
    padding: 0 120px;
    padding-top: 200px;
  }
  
  .hero {
    padding-bottom: 100px;
  }
  .hero-content {
    width: 2000px;
  }

  .banner-section {
    padding-bottom: 10px;
  }
  
  .hero-title {
    font-size: 88px;
    width: 2000px;
  }
  
  .banner-container {
    max-width: 2400px;
    padding: 0 120px;
  }
  
  .banner-grid {
    gap: 80px;
  }
  
  .banner-item.large {
    width: 2400px;
    height: 800px;
  }
  
  .banner-item.medium {
    width: calc(50% - 40px);
    height: 800px;
  }
  
  .banner-content {
    padding: 0 160px;
    gap: 160px;
  }
  
  .banner-title h3 {
    font-size: 48px;
  }
  
  .banner-logo {
    width: 200px;
    height: 35px;
  }
  
  .clients-container {
    max-width: 2000px;
    padding: 0 120px;
  }
  
  .clients-title {
    font-size: 64px;
  }
  
  .clients-description {
    font-size: 24px;
  }
  
  .clients-logos {
    gap: 100px;
  }
  
  .works-container {
    max-width: 2000px;
    padding: 0 120px;
  }
  
  .works-title {
    font-size: 80px;
  }
  
  .year-title {
    font-size: 64px;
  }
  
  .works-list {
    gap: 100px;
  }
  
  .work-item {
    width: calc(50% - 50px);
  }
  
  .work-text {
    font-size: 28px;
  }
}

/* Large Desktop (1600px ~ 2499px) */
@media (min-width: 1600px) and (max-width: 2559px) {
  .hero-container {
    max-width: 1316px;
    padding: 0 100px;
  }
  
  .hero-content {
    width: 1316px;    
    margin: 0 auto;
  }
  
  .hero-title {
    font-size: 52px !important;
    width: 1316px;
  }
  
  .banner-container {
    max-width: 2000px;
    padding: 0 100px;
  }
  
  .banner-grid {
    gap: 60px;
  }
  
  .banner-item.large {
    width: 2000px;
    height: 70px;
  }
  
  .banner-item.medium {
    width: calc(50% - 30px);
    height: 700px;
  }
  
  .banner-content {
    padding: 0 140px;
    gap: 120px;
  }
  
  .banner-title h3 {
    font-size: 40px;
  }
  
  .banner-logo {
    width: 180px;
    height: 30px;
  }
  
  .clients-container {
    max-width: 1600px;
    padding: 0 100px;
  }
  
  .clients-title {
    font-size: 56px;
  }
  
  .clients-description {
    font-size: 20px;
  }
  
  .clients-logos {
    gap: 80px;
  }
  
  .works-container {
    max-width: 1600px;
    padding: 0 100px;
  }
  
  .works-title {
    font-size: 64px;
  }
  
  .year-title {
    font-size: 56px;
  }
  
  .works-list {
    gap: 80px;
  }
  
  .work-item {
    width: calc(50% - 40px);
  }
  
  .work-text {
    font-size: 24px;
  }
}

#navigation-placeholder {
  position: relative;
  z-index: 2;
}

/* Hero Section */
.hero-container {
  max-width: 1316px;
  margin: 0 auto;
  padding: 0 80px;
  display: flex;
  justify-content: center;
}

.hero-content {
  text-align: left;
  width: 1316px;
}

.hero-title {
  font-family: 'Pretendard', sans-serif;
  font-size: 64px;
  font-weight: 700;
  line-height: 1.3125;
  color: #1A1A1A;
  width: 1316px;
}

/* Banner Section */
.banner-section {
  padding: 0 0 100px;
  background: #FFFFFF;
}

.banner-container {
  max-width: 1760px;
  margin: 0 auto;
  padding: 0 80px;
}

.banner-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 50px;
  width: 100%;
}

.banner-item {
  border-radius: 0 50px 50px 50px;
  overflow: hidden;
  position: relative;
}

.banner-item.large {
  width: 1760px;
  height: 650px;
}

.banner-item.medium {
  width: calc(50% - 25px);
  height: 650px;
}

.banner-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.banner-item:hover img {
  transform: scale(1.05);
}

/* Banner Overlay Styles */
.banner-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  opacity: 0;
  transition: opacity 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  border-radius: 0 50px 50px 50px;
}

.banner-item:hover .banner-overlay {
  opacity: 1;
}

.banner-content {
  display: flex;
  flex-direction: column;
  gap: 120px;
  padding: 0 191px;
  width: 100%;
  max-width: 900px;
  align-items: flex-start;
}

.banner-item.medium .banner-content {
  padding: 0 80px;
}

.banner-title {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.banner-title h3 {
  font-family: 'Pretendard', sans-serif;
  font-size: 40px;
  font-weight: 700;
  line-height: 1.5;
  color: #FFFFFF;
  margin: 0;
}

.banner-logo {
  width: 200px;
  height: 40px;
  max-width: 200px;
  object-fit: scale-down;
}

.view-project-btn {
  display: flex;
  align-items: center;
  gap: 16px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  transition: transform 0.3s ease;
}

.view-project-btn:hover {
  transform: translateX(8px);
}

.view-project-btn span {
  font-family: 'Pretendard', sans-serif;
  font-weight: 700;
  font-size: 16px;
  line-height: 1.5;
  color: #FFFFFF;
}

.view-project-btn svg {
  width: 32px;
  height: 32px;
}

/* Clients Section */
.clients-section {
  margin-top: 0px;
  padding: 100px 0 100px;
  background: #F7F7F7;
}

.clients-container {
  max-width: 1316px;
  margin: 0 auto;
  padding: 0 0px;
}

.clients-header {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 100px;
}

.clients-title {
  font-family: 'Pretendard', sans-serif;
  font-size: 64px;
  font-weight: 700;
  line-height: 1.3125;
  color: #1A1A1A;
}

.clients-description {
  font-family: 'Pretendard', sans-serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.6;
  color: #666666;
  max-width: 665px;
}

.clients-logos {
  display: flex;
  align-items: center;
  overflow: hidden;
  scrollbar-width: none;
  -ms-overflow-style: none;
  -webkit-overflow-scrolling: touch;
  user-select: none;
  white-space: nowrap;
}

.clients-logos-inner {
  display: flex;
  gap: 80px;
  align-items: center;
  animation: scroll 30s linear infinite;
  white-space: nowrap;
}

@keyframes scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

.clients-logos.active {
  cursor: grabbing;
}

.clients-logos::-webkit-scrollbar {
  display: none;
}

.client-logo {
  flex-shrink: 0;
  width: 144px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.client-logo img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

/* Works Section */
.works-section {
  padding: 0 0 200px;
  background: #FFFFFF;
}

.works-container {
  max-width: 1316px;
  margin: 100px auto;
  padding: 0 0px;
  display: flex;
  flex-direction: column;
  gap: 100px;
}

.works-title {
  font-family: 'Pretendard', sans-serif;
  font-size: 80px;
  font-weight: 700;
  line-height: 1.25;
  color: #1A1A1A;
}

.works-content {
  display: flex;
  flex-direction: column;
  gap: 80px;
  align-items: center;
}

.works-year {
  display: flex;
  flex-direction: column;
  gap: 50px;
  width: 100%;
}

.year-title {
  font-family: 'Pretendard', sans-serif;
  font-size: 64px;
  font-weight: 700;
  line-height: 1.3125;
  color: #1A1A1A;
}

.works-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: center;
}

.work-item {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 618px;
}

.work-text {
  font-family: 'Pretendard', sans-serif;
  font-size: 24px;
  font-weight: 400;
  line-height: 1.5;
  color: #1A1A1A;
}

.work-icon {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.work-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.works-divider {
  width: 100%;
  height: 1px;
  background: #E6E6E6;
}

.works-more {
  display: flex;
  justify-content: center;
  margin-top: 50px;
}

.more-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 24px 40px;
  height: 80px;
  width: 480px;
  background: #FFFFFF;
  border: 2px solid #333333;
  border-radius: 0px 40px 40px 40px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.more-btn span {
  font-family: 'Pretendard', sans-serif;
  font-weight: 700;
  font-size: 20px;
  line-height: 1.6;
  color: #1A1A1A;
}

.more-btn:hover {
  background: #333333;
  color: #FFFFFF;
}

.more-btn:hover span {
  color: #FFFFFF;
}

/* Hidden Works Sections */
.hidden-works {
  padding: 0 0 200px;
  background: #FFFFFF;
}

.hidden-works .works-container {
  margin: 0 auto;
  padding: 0 0px;
  display: flex;
  flex-direction: column;
  gap: 100px;
}

/* Responsive Design - Standardized Breakpoints */
/* Medium Desktop (1200px ~ 1599px) */
@media (max-width: 1599px) and (min-width: 1200px) {
  .hero-container,
  .banner-container,
  .clients-container,
  .works-container {
    padding: 0 80px;
  }
  /* Constrain clients and last works sections to 1100px */
  .clients-container,
  .works-container {
    max-width: 1100px;
    margin: 0 auto;
  }
  
  .hero-title {
    font-size: 44px;
    width: 100%;
  }
  /* Increase spacing between top navigation and hero title */
  .hero { padding: 200px 0 60px; }
  /* Align hero area left with padding and no margins */
  .hero-container { align-items: flex-start; padding-left: 0px; }
  .hero-content { align-items: flex-start; text-align: left; padding-left: 100px; margin-left: 0; margin-right: 0; }
  
  .banner-grid {
    gap: 40px;
  }
  
  .banner-item.large {
    width: 100%;
    height: 500px;
  }
  
  .banner-item.medium {
    width: calc(50% - 20px);
    height: 500px;
  }
  
  .banner-content {
    padding: 0 120px;
    gap: 80px;
  }
  
  .banner-title h3 {
    font-size: 32px;
  }
  
  .banner-logo {
    width: 150px;
    height: 25px;
  }
  
  .clients-title {
    font-size: 44px;
  }
  
  .clients-description {
    font-size: 16px;
  }
  
  .clients-logos {
    gap: 60px;
  }
  
  .works-section {
    padding-top: 100px;
  }

  .works-title {
    font-size: 56px;
  }
  
  .year-title {
    font-size: 44px;
  }
  
  .works-list {
    gap: 20px;
  }
  
  .work-item {
    width: calc(50% - 30px);
  }
  
  .work-text {
    font-size: 18px;
  }
}

/* Small Desktop (1025px ~ 1199px) */
@media (max-width: 1199px) and (min-width: 1025px) {
  .hero-container,
  .banner-container,
  .clients-container,
  .works-container {
    padding: 0 40px;
  }
  /* Constrain clients and last works sections to 1100px */
  .clients-container,
  .works-container {
    max-width: 1100px;
    margin: 0 auto;
  }
  
  .hero-title {
    font-size: 40px;
    width: 100%;
  }
  /* Increase spacing between top navigation and hero title */
  .hero { padding: 200px 0 40px; }
  /* Align hero area left with padding and no margins */
  .hero-container { align-items: flex-start; padding-left: 80px; }
  .hero-content { align-items: flex-start; text-align: left; padding-left: 100px; margin-left: 0; margin-right: 0; }
  
  .banner-grid {
    gap: 40px;
  }
  
  .banner-item.large {
    width: 100%;
    height: 500px;
  }
  
  .banner-item.medium {
    width: calc(50% - 20px);
    height: 500px;
  }
  
  .banner-content {
    padding: 0 120px;
    gap: 80px;
  }
  
  .banner-title h3 {
    font-size: 32px;
  }
  
  .banner-logo {
    width: 150px;
    height: 25px;
  }
  
  .clients-title {
    font-size: 44px;
  }
  
  .clients-description {
    font-size: 16px;
  }
  
  .clients-logos {
    gap: 60px;
  }
  
  .works-title {
    font-size: 56px;
  }
  
  .year-title {
    font-size: 44px;
  }
  
  .works-section {
    padding-top: 100px;
  }

  .works-list {
    gap: 16px;
  }
  
  .work-item {
    width: calc(50% - 30px);
  }
  
  .work-text {
    font-size: 18px;
  }
}

/* Tablet (768px ~ 1024px) */
@media (max-width: 1024px) and (min-width: 768px) {
  .hero {
    padding: 180px 0 50px;
  }
  
  .hero-container,
  .banner-container,
  .clients-container,
  .works-container {
    padding: 0 40px;
  }
  
  .hero-content { 
    width: 100%;
   /*  max-width: 690px;*/
  }
  
  .hero-title {
    font-size: 32px;
    width: 100%;
    max-width: 690px;
    word-break: keep-all;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }
  
  .banner-section {
    padding: 0 0 60px;
  }
  
  /* Mobile banner grid - force column layout */
  .banner-grid {
    display: flex !important;
    flex-direction: column !important;
    flex-wrap: nowrap !important;
    gap: 100px !important;
    align-items: stretch !important;
  }
  
  /* Mobile banner items - force full width and no overlap */
  .banner-item.large,
  .banner-item.medium {
    width: 100% !important;
    height: auto !important;
    border-radius: 0 !important;
    overflow: visible !important;
    position: static !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 20px !important;
    margin-bottom: 0 !important;
    flex-shrink: 0 !important;
    min-height: 0 !important;
  }
  
  .banner-item img {
    width: 100% !important;
    height: 327px !important;
    object-fit: cover !important;
    border-radius: 0 24px 24px 24px !important;
    transition: none !important;
  }
  
  .banner-item:hover img {
    transform: none !important;
  }
  
  /* Mobile banner overlay - always visible */
  .banner-overlay {
    position: static !important;
    background: none !important;
    opacity: 1 !important;
    display: block !important;
    width: 100% !important;
    height: auto !important;
    border-radius: 0 !important;
  }
  
  .banner-item:hover .banner-overlay {
    opacity: 1 !important;
  }
  
  /* Mobile banner content */
  .banner-content {
    padding: 0 20px !important;
    gap: 50px !important;
    max-width: none !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
  }
  
  .banner-title {
    display: flex !important;
    flex-direction: column !important;
    gap: 16px !important;
    width: 100% !important;
  }
  
  .banner-title h3 {
    color: #1A1A1A !important;
    font-size: 24px !important;
    font-weight: 700 !important;
    line-height: 1.5 !important;
    margin: 0 !important;
  }
  
  .banner-logo {
    display: none !important;
  }
  
  .view-project-btn {
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
    background: none !important;
    border: none !important;
    cursor: pointer !important;
    padding: 0 !important;
    transition: transform 0.3s ease !important;
  }
  
  .view-project-btn:hover {
    transform: translateX(4px) !important;
  }
  
  .view-project-btn span {
    color: #1A1A1A !important;
    font-size: 14px !important;
    font-weight: 700 !important;
  }
  
  .view-project-btn svg {
    width: 24px !important;
    height: 24px !important;
  }
  
  .view-project-btn svg path {
    stroke: #1A1A1A !important;
  }
  
  .clients-section {
    padding: 60px 0;
  }
  
  .clients-header {
    margin-bottom: 60px;
    gap: 20px;
  }
  
  .clients-title {
    font-size: 36px;
    word-break: keep-all;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }
  
  .clients-description {
    font-size: 16px;
    word-break: keep-all;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }
  
  .clients-logos {
    gap: 40px;
    overflow: hidden !important;
    scrollbar-width: none !important;
    -ms-overflow-style: none !important;
    -webkit-overflow-scrolling: touch !important;
    user-select: none !important;
  }
  
  .clients-logos-inner {
    gap: 40px;
    animation: scroll 40s linear infinite;
  }
  
  .clients-logos::-webkit-scrollbar {
    display: none !important;
  }
  
  .client-logo {
    min-width: 120px;
    height: 32px;
    flex-shrink: 0 !important;
  }
  
  .works-section {
    padding: 0 0 100px;
  }
  
  .works-container {
    gap: 60px;
    padding: 0 40px;
  }
  
  .works-title {
    font-size: 48px;
    word-break: keep-all;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }
  
  .works-content {
    gap: 60px;
  }
  
  .works-year {
    gap: 40px;
  }
  
  .year-title {
    font-size: 36px;
    word-break: keep-all;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }
  
  .works-list {
    gap: 16px;
  }
  
  .work-item {
    width: 100%;
    flex-direction: row;
    align-items: center;
    gap: 12px;
  }
  
  .work-text {
    font-size: 18px;
    word-break: keep-all;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }
  
  .more-btn {
    padding: 20px 32px;
    height: 64px;
    width: 100%;
    max-width: 100%;
    min-width: 300px;
  }
  
  .more-btn span {
    font-size: 18px;
  }
  
  .hidden-works {
    padding: 0 0 100px;
  }
  
  .hidden-works .works-container {
    gap: 60px;
    padding: 0 24px;
  }
}

/* Mobile (≤767px) */
@media (max-width: 767px) {
  .hero-container,
  .banner-container,
  .clients-container,
  .works-container {
    padding: 0 20px;
    box-sizing: border-box;
  }
  
  .hero-title {
    font-size: 28px;
    width: 100%;
    max-width: 100%;
    word-break: keep-all;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }
  
  .hero-content {
    width: 100%;
    max-width: 100%;
  }
  
  /* Mobile banner grid - force column layout */
  .banner-grid {
    display: flex !important;
    flex-direction: column !important;
    flex-wrap: nowrap !important;
    gap: 60px !important;
    align-items: stretch !important;
  }
  
  /* Mobile banner items - force full width and no overlap */
  .banner-item.large,
  .banner-item.medium {
    width: 100% !important;
    height: auto !important;
    border-radius: 0 !important;
    overflow: visible !important;
    position: static !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 20px !important;
    margin-bottom: 0 !important;
    flex-shrink: 0 !important;
    min-height: 0 !important;
  }
  
  .banner-item img {
    width: 100% !important;
    height: 250px !important;
    object-fit: cover !important;
    border-radius: 0 20px 20px 20px !important;
    transition: none !important;
  }
  
  .banner-item:hover img {
    transform: none !important;
  }
  
  /* Mobile banner overlay - always visible */
  .banner-overlay {
    position: static !important;
    background: none !important;
    opacity: 1 !important;
    display: block !important;
    width: 100% !important;
    height: auto !important;
    border-radius: 0 !important;
  }
  
  .banner-item:hover .banner-overlay {
    opacity: 1 !important;
  }
  
  /* Mobile banner content */
  .banner-content {
    padding: 0 20px !important;
    gap: 30px !important;
    max-width: none !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    box-sizing: border-box;
  }
  
  .banner-title {
    display: flex !important;
    flex-direction: column !important;
    gap: 12px !important;
    width: 100% !important;
  }
  
  .banner-title h3 {
    color: #1A1A1A !important;
    font-size: 20px;
    font-weight: 700 !important;
    line-height: 1.5 !important;
    margin: 0 !important;
  }
  
  .banner-logo {
    display: none !important;
  }
  
  .view-project-btn span {
    color: #1A1A1A !important;
    font-size: 12px;
    font-weight: 400 !important;
  }
  
  .view-project-btn svg {
    width: 20px;
    height: 20px;
  }
  
  .view-project-btn svg path {
    stroke: #1A1A1A !important;
  }
  
  .clients-title {
    font-size: 32px;
  }
  
  .clients-description {
    font-size: 14px;
    word-break: keep-all;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }
  
  /* Hide line breaks in client description on mobile */
  .clients-description br { display: none; }
  
  .clients-logos {
    gap: 30px;
  }
  
  .client-logo {
    min-width: 100px;
    height: 28px;
  }
  
  .clients-header {
    margin-bottom: 60px;
  }

  .works-title {
    font-size: 40px;
  }
  
  .works-list{
    gap: 12px;
  }
  
  .year-title {
    font-size: 32px;
  }
  
  .work-text {
    font-size: 16px;
  }
  
  .more-btn {
    padding: 16px 80px;
    height: 56px;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    box-sizing: border-box;
  }
  
  .more-btn span {
    font-size: 16px;
  }
} 

/* Small Mobile (≤480px) */
@media (max-width: 480px) {
  .hero-container,
  .banner-container,
  .clients-container,
  .works-container {
    padding: 0 20px;
    box-sizing: border-box;
  }
  
  .hero-title {
    font-size: 28px;
    width: 100%;
    max-width: 100%;
    word-break: keep-all;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }
  
  .hero-content {
    width: 100%;
    max-width: 100%;
  }
  
  /* Mobile banner grid - force column layout */
  .banner-grid {
    display: flex !important;
    flex-direction: column !important;
    flex-wrap: nowrap !important;
    gap: 50px !important;
    align-items: stretch !important;
  }
  
  /* Mobile banner items - force full width and no overlap */
  .banner-item.large,
  .banner-item.medium {
    width: 100% !important;
    height: auto !important;
    border-radius: 0 !important;
    overflow: visible !important;
    position: static !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 16px !important;
    margin-bottom: 0 !important;
    flex-shrink: 0 !important;
    min-height: 0 !important;
  }
  
  .banner-item img {
    width: 100% !important;
    height: 200px !important;
    object-fit: cover !important;
    border-radius: 0 16px 16px 16px !important;
    transition: none !important;
  }
  
  .banner-item:hover img {
    transform: none !important;
  }
  
  /* Mobile banner overlay - always visible */
  .banner-overlay {
    position: static !important;
    background: none !important;
    opacity: 1 !important;
    display: block !important;
    width: 100% !important;
    height: auto !important;
    border-radius: 0 !important;
  }
  
  .banner-item:hover .banner-overlay {
    opacity: 1 !important;
  }
  
  /* Mobile banner content */
  .banner-content {
    padding: 0 20px !important;
    gap: 24px !important;
    max-width: none !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    box-sizing: border-box;
  }
  
  .banner-title {
    display: flex !important;
    flex-direction: column !important;
    gap: 10px !important;
    width: 100% !important;
  }
  
  .banner-title h3 {
    color: #1A1A1A !important;
    font-size: 20px;
    font-weight: 700 !important;
    line-height: 1.5 !important;
    margin: 0 !important;
  }
  
  .banner-logo {
    display: none !important;
  }
  
  .view-project-btn span {
    color: #1A1A1A !important;
    font-size: 12px;
    font-weight: 400 !important;
  }
  
  .view-project-btn svg {
    width: 20px;
    height: 20px;
  }
  
  .view-project-btn svg path {
    stroke: #1A1A1A !important;
  }
  
  .clients-title {
    font-size: 32px;
  }
  
  .clients-description {
    font-size: 14px;
    word-break: keep-all;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }
  
  /* Hide line breaks in client description on small mobile */
  .clients-description br { display: none; }
  
  .clients-logos {
    gap: 30px;
  }
  
  .client-logo {
    min-width: 100px;
    height: 28px;
  }
  
  .works-title {
    font-size: 40px;
  }
  
  .year-title {
    font-size: 32px;
  }
  
  .work-text {
    font-size: 16px;
  }
  
  .works-list{
    gap: 12px;
  }

  .more-btn {
    padding: 16px 80px;
    height: 56px;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    box-sizing: border-box;
  }
  
  .more-btn span {
    font-size: 16px;
  }
}
