

/*————————————————————————————————————————————————————————————————————————————————————————————————*/
/* HLAVNI STRANKA            													                                            */
/*————————————————————————————————————————————————————————————————————————————————————————————————*/


/*————————————————————————————————————————————————————————————————————————————————————————————————*/
/* HERO SEKCE               													                                            */
/*————————————————————————————————————————————————————————————————————————————————————————————————*/

/* Zaklad hero sekce —————————————————————————————————————————————————————————————————————————————*/
.hero {
  background: linear-gradient(to bottom right, #2bbfbd, #25a5a3, #0f766e) !important;
  padding-bottom: 2rem;
  margin-bottom: 3rem;
  position: relative;
  overflow: visible; 
}

.hero-content {
  justify-content: space-between;
  flex-direction: column;
  padding: 5rem 0 8rem;
  align-items: center;
  display: flex;
  gap: 2.5rem;
}

.hero-title {
  margin-bottom: 1.5rem;
  font-size: 2.5rem;
  line-height: 1.2;
  font-weight: 700;
  color: white;
}

.hero-title .highlight {
  color: #fde047;
}

.hero-text {
  text-align: center;
  z-index: 10;
  flex: 1;
}

.hero-subtitle {
  color: rgba(255, 255, 255, 0.877);
  margin-bottom: 2.5rem;
  font-size: 1.25rem;
  margin-right: auto;
  margin-left: auto;
  max-width: 32rem;
}

.search-bar {
  border-radius: 1.5rem;
  background: white;
  margin: 1rem 0rem;
  padding: 1rem;
}

.search-form {
  flex-direction: column;
  display: flex;
  gap: 1rem;
}

.hero::before {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  filter: blur(48px);
  position: absolute;
  height: 16rem;
  width: 16rem;
  right: 6rem;
  content: "";
  top: 6rem;
}

.hero::after {
  background: rgba(255, 107, 107, 0.05);
  border-radius: 50%;
  filter: blur(48px);
  position: absolute;
  height: 12rem;
  width: 12rem;
  bottom: 3rem;
  content: "";
  left: 3rem;
}

.search-input {
  position: relative;
  flex: 1;
}

.search-input input {
  padding: 0.875rem 0.75rem 0.875rem 2.5rem;
  font-family: "Poppins", sans-serif;
  border: 1px solid #e5e7eb;
  transition: all 0.2s;
  border-radius: 1rem;
  font-size: 1rem;
  outline: none;
  width: 100%;
}

.search-input input:focus {
  box-shadow: 0 0 0 3px rgba(43, 191, 189, 0.1);
  border-color: #2bbfbd;
}

.search-input i {
  transform: translateY(-50%);
  position: absolute;
  color: #2bbfbd;
  left: 1rem;
  top: 50%;
}

.search-btn {
  font-family: "Poppins", sans-serif;
  justify-content: center;
  padding: 0.875rem 2rem;
  background: #2bbfbd;
  transition: all 0.3s;
  align-items: center;
  border-radius: 1rem;
  font-weight: 600;
  cursor: pointer;
  font-size: 1rem;
  color: white;
  display: flex;
  border: none;
  gap: 0.5rem;
}

.search-btn:hover {
  transform: scale(1.05);
  background: #25a5a3;
}

.popular-tags {
  justify-content: center;
  align-items: center;
  font-size: 0.875rem;
  flex-wrap: wrap;
  display: flex;
  gap: 0.5rem;
}

.popular-tags span {
  color: rgba(255, 255, 255, 0.9);
  margin-right: 0.5rem;
  font-weight: 500;
}

.popular-tags a {
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(4px);
  padding: 0.375rem 1rem;
  text-decoration: none;
  border-radius: 9999px;
  transition: all 0.3s;
  color: white;
}

.popular-tags a:hover {
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  background: rgba(255, 255, 255, 0.3);
}

.hero-image {
  position: relative;
  display: none;
  flex: 0 0 40%;
}

.hero-image img {
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  animation: pulse 2s infinite;
  transform: rotate(0deg);
  border-radius: 1.5rem;
  transition: all 0.5s;
  width: 100%;
}

.hero-image img:hover {
  transform: scale(1.05);
}


/* Responzivita ——————————————————————————————————————————————————————————————————————————————————*/

/* min-width: 1024px */
@media (min-width: 1024px) {
  .hero-title {
    font-size: 3.75rem;
  }
}

/* min-width: 768px */
@media (min-width: 768px) {
  .hero-content {
    flex-direction: row;
    padding: 8rem 0;
  }

  .hero-text {
    text-align: left;
  }

  .hero-title {
    font-size: 3rem;
  }

  .hero-subtitle {
    margin-right: 0;
    margin-left: 0;
  }

  .search-form {
    flex-direction: row;
    align-items: center;
  }

  .popular-tags {
    justify-content: flex-start;
  }

  .hero-image {
    display: block;
  }
}


/* Animace ———————————————————————————————————————————————————————————————————————————————————————*/
@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.05);
    opacity: 0.8;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}


/*————————————————————————————————————————————————————————————————————————————————————————————————*/
/* HLAVNI HERO BANNER       													                                            */
/*————————————————————————————————————————————————————————————————————————————————————————————————*/

/* Zaklad banneru ————————————————————————————————————————————————————————————————————————————————*/
.overlapping-banner {
  pointer-events: none;
  position: absolute;
  padding: 0 1rem; 
  bottom: -30px;
  z-index: 100;
  right: 0;
  left: 0;
}

.overlapping-banner .container {
  position: relative;
}

.overlapping-banner .banner-link {
  transition: all 0.3s ease;
  border-radius: 0.75rem;
  pointer-events: all;
  overflow: hidden;
  max-width: 100%;
  display: block;
  margin: 0 auto;
}

.overlapping-banner img {
  display: block;
  height: auto;
  width: 100%;
}

.hero {
  margin-bottom: 2rem;
}


/* Responzivita ——————————————————————————————————————————————————————————————————————————————————*/

/* min-width: 768px */
@media (min-width: 768px) {
  .overlapping-banner {
    bottom: -40px;
    padding: 0;
  }
  
  .overlapping-banner .banner-link {
    max-width: 90%;
    border-radius: 1rem;
  }
  
  .hero {
    margin-bottom: 2.5rem;
  }
}

/* min-width: 1024px */
@media (min-width: 1024px) {
  .overlapping-banner {
    bottom: -47.5px;
  }
  
  .overlapping-banner .banner-link {
    max-width: 1000px;
  }
  
  .hero {
    margin-bottom: 3rem;
  }
}


/*————————————————————————————————————————————————————————————————————————————————————————————————*/
/* VYZNAMNI INZERENTI       													                                            */
/*————————————————————————————————————————————————————————————————————————————————————————————————*/

/* Zaklad vypisu log —————————————————————————————————————————————————————————————————————————————*/
.stats-section {
  padding: 5rem 0;
}

.section-header {
  margin-bottom: 4rem;
  text-align: center;
}

.section-badge {
  background: rgba(43, 191, 189, 0.1);
  padding: 0.375rem 1rem;
  margin-bottom: 0.75rem;
  border-radius: 9999px;
  display: inline-block;
  font-size: 0.875rem;
  font-weight: 600;
  color: #2bbfbd;
}

.section-title {
  margin-bottom: 1.5rem;
  font-size: 1.875rem;
  font-weight: 700;
  color: #1f2937;
}

.section-divider {
  background: #2bbfbd;
  border-radius: 9999px;
  height: 0.25rem;
  margin: 0 auto;
  width: 6rem;
}

.partners-grid {
  grid-template-columns: repeat(2, 1fr);
  align-items: center;
  margin-bottom: 6rem;
  display: grid;
  gap: 2rem;
}

.partners-grid img {
  filter: grayscale(100%);
  transition: all 0.3s;
  justify-self: center;
  height: 4rem;
}

.partners-grid img:hover {
  filter: grayscale(0%);
  transform: scale(1.1);
}

@media (min-width: 768px) {
  .partners-grid {
    grid-template-columns: repeat(6, 1fr);
  }
}


/*————————————————————————————————————————————————————————————————————————————————————————————————*/
/* OBORY                     													                                            */
/*————————————————————————————————————————————————————————————————————————————————————————————————*/

/* Zaklad vypisu oboru ———————————————————————————————————————————————————————————————————————————*/
.categories-section {
  background-color: #f9fafb;
  padding: 6rem 0;
}

.categories-section .section-badge {
  background: rgba(43, 191, 189, 0.1);
}

.section-description {
  margin: 1.5rem auto 0;
  font-size: 1.125rem;
  color: #6b7280;
  max-width: 32rem;
}

.categories-grid {
  grid-template-columns: 1fr;
  display: grid;
  gap: 2rem;
}


.category-card {
  border: 1px solid #e5e7eb;
  flex-direction: column;
  border-radius: 1.5rem;
  text-decoration: none;
  transition: all 0.5s;
  background: white;
  overflow: hidden;
  color: inherit;
  display: flex;
  height: 100%;
}

.category-card:hover {
  transform: scale(1.05);
}

.category-header {
  background: linear-gradient(135deg, #2bbfbd 0%, #3fd9d7 100%);
  position: relative;
  padding: 1.5rem;
  flex-shrink: 0;
  height: 7rem;
}

.category-icon {
  justify-content: center;
  border-radius: 0.75rem;
  transition: all 0.5s;
  align-items: center;
  background: white;
  height: 3.5rem;
  display: flex;
  width: 3.5rem;
}

.category-card:hover .category-icon {
  transform: translateY(-8px) rotate(12deg);
}

.category-icon i {
  font-size: 1.5rem;
  color: #2bbfbd;
}

.category-content {
  justify-content: space-between;
  flex-direction: column;
  padding: 1.5rem;
  min-height: 0;
  display: flex;
  flex-grow: 1; 
}

.category-title {
  align-items: flex-start;
  transition: color 0.3s;
	text-decoration: none;
  margin-bottom: 1rem;
	font-size: 1.05rem;
  font-weight: 600;
  color: #1f2937;
  line-height: 1.4;
  display: flex;
  flex-grow: 1;
}

.category-card:hover .category-title {
  color: #2bbfbd;
}

.category-count {
  justify-content: space-between;
  align-items: center;
  color: #6b7280;
  margin-top: auto;
  flex-shrink: 0;  
  display: flex;
}

.category-count .number {
  font-weight: 500;
}

.category-arrow {
  transform: translateX(-8px);
  transition: all 0.3s;
  color: #2bbfbd;
  opacity: 0;
}

.category-card:hover .category-arrow {
  transform: translateX(0);
  opacity: 1;
}


/* Responzivita ——————————————————————————————————————————————————————————————————————————————————*/
@media (min-width: 640px) {
  .categories-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 768px) {
  .categories-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1024px) {
  .categories-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}


/*————————————————————————————————————————————————————————————————————————————————————————————————*/
/* CLANKY                   													                                            */
/*————————————————————————————————————————————————————————————————————————————————————————————————*/

/* Zaklad vypisu clanku ——————————————————————————————————————————————————————————————————————————*/
.articles-section {
  background: #f9fafb;
  padding: 6rem 0;
} 

.articles-grid {
  grid-template-columns: 1fr;
  display: grid;
  gap: 2rem;
}

.featured-article {
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 1.5rem;
  background: white;
  grid-column: 1 / -1;
  overflow: hidden;
  cursor: pointer;
}

.featured-article:hover {
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  transform: translateY(-8px);
}

.featured-content {
  grid-template-columns: 1fr;
  display: grid;
  gap: 0;
}

.featured-image {
  background: linear-gradient(135deg, rgba(20, 184, 166, 0.8), rgba(6, 182, 212, 0.8)), url('https://images.unsplash.com/photo-1507003211169-0a1dd7228f2d?ixlib=rb-4.0.3&auto=format&fit=crop&w=800&q=80') center/cover;
  transition: all 0.3s ease;
	position: relative;
  height: 16rem;
}

.featured-article:hover .featured-image {
  background-blend-mode: multiply;
}

.category-badge {
  background: rgba(255, 255, 255, 0.9);
  border-radius: 9999px;
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  position: absolute;
  font-weight: 600;
  color: #14b8a6;
  left: 1.5rem;
  top: 1.5rem;
}

.read-time {
  background: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(4px);
  border-radius: 0.5rem;
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  align-items: center;
  position: absolute;
  bottom: 1.5rem;
  color: white;
  display: flex;
  right: 1.5rem;
  gap: 0.5rem;
}

.featured-text {
  padding: 2rem;
}

.author-info {
  margin-bottom: 1rem;
  font-size: 0.875rem;
  align-items: center;
  color: #6b7280;
  display: flex;
  gap: 1rem;
}

.author-avatar {
  justify-content: center;
  background: #14b8a6;
  align-items: center;
  border-radius: 50%;
  display: flex;
  height: 2rem;
  width: 2rem;
}

.author-avatar i {
  font-size: 0.75rem;
  color: white;
}

.featured-title {
  font-size: 1.875rem;
  margin-bottom: 1rem;
  line-height: 1.3;
  font-weight: 700;
  color: #1f2937;
}

.featured-excerpt {
  margin-bottom: 1.5rem;
  font-size: 1.125rem;
  line-height: 1.6;
  color: #6b7280;
}

.article-footer {
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  display: flex;
  gap: 1rem;
}

.tags {
  flex-wrap: wrap;
  display: flex;
  gap: 0.5rem;
}

.tag {
  background: rgba(20, 184, 166, 0.1);
  padding: 0.25rem 0.75rem;
  justify-content: center;
  border-radius: 9999px;
  flex-direction: row;
  align-items: center;
  font-size: 0.875rem;
  font-weight: 500;
  color: #14b8a6;
  display: flex;
  gap: .35rem;
}

.read-more {
  transition: all 0.3s ease;
  text-decoration: none;
  align-items: center;
  color: #14b8a6;
  font-weight: 600;
  display: flex;
  gap: 0.5rem;
}

.read-more:hover {
  gap: 0.75rem;
}

.regular-articles {
  grid-template-columns: 1fr;
  display: grid;
  gap: 2rem;
}

.article-card {
  transition: border-color 0.2s ease, background-color 0.2s ease;    
  border: 1px solid #d1d5db;
  border-radius: 1.5rem;
  background: white;
  overflow: hidden;
}

.article-card:hover {
  border: 1px solid #2bbfbd;
}

.article-image {
  background-position: center;
  transition: all 0.3s ease;
  background-size: cover;
  position: relative;
  height: 12rem;
}

.article-card:hover .article-image {
  background-blend-mode: multiply;
}

.article-badge {
  background: rgba(255, 255, 255, 0.9);
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  position: absolute;
  font-weight: 600;
  margin: 15px;
  z-index: 1;
}

.article-badge.interview { color: #6366f1; }
.article-badge.salary    { color: #10b981; }
.article-badge.teamwork  { color: #f56565; }

.article-time {
  background: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(4px);
  padding: 0.375rem 0.75rem;
  border-radius: 0.5rem;
  align-items: center;
  position: absolute;
  font-size: 0.75rem;
  color: white;
  display: flex;
  gap: 0.25rem;
  bottom: 1rem;
  right: 1rem;
}

.article-author {
  margin-bottom: 0.75rem;
  align-items: center;
  font-size: 0.75rem;
  color: #6b7280;
  display: flex;
  gap: 0.75rem;
}

.article-avatar {
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  height: 1.5rem;
  display: flex;
  width: 1.5rem;
}

.article-avatar.interview { background: #6366f1; }
.article-avatar.salary    { background: #10b981; }
.article-avatar.teamwork  { background: #f56565; }

.article-avatar i {
  font-size: 0.625rem;
  color: white;
}

.article-title {
  margin-bottom: 0.5rem;
	text-decoration: none;
  font-size: 1.25rem;
  line-height: 1.3;
  font-weight: 600;
  color: #1f2937;
}

.article-excerpt {
  color: #6b7280;
  font-size: 1rem;
  line-height: 1.5;
  margin-bottom: 1rem;
}

.main-article-excerpt {
  color: #6b7280;
  font-size: 1rem;
  line-height: 1.5;
  margin-bottom: .8rem;
}

.article-tags {
  display: flex;
  gap: 0.375rem;
  flex-wrap: wrap;
}

.article-tag {
  padding: 0.25rem 0.5rem;
  border-radius: 9999px;
  font-size: 0.75rem;
}

.article-tag.interview {
  background: rgba(99, 102, 241, 0.1);
  color: #6366f1;
}

.article-tag.salary {
  background: rgba(16, 185, 129, 0.1);
  color: #10b981;
}

.article-tag.teamwork {
  background: rgba(245, 101, 101, 0.1);
  color: #f56565;
}

.article-link {
  transition: all 0.3s ease;
  text-decoration: none;
  font-size: 0.875rem;
  align-items: center;
  font-weight: 500;
  display: flex;
  gap: 0.375rem;
}

.article-link.interview { color: #6366f1; }
.article-link.salary    { color: #10b981; }
.article-link.teamwork  { color: #f56565; }

.article-card:hover .article-link {
  gap: 0.5rem;
}

.show-all-container {
  text-align: center;
  margin-top: 3rem;
}

.btn-primary {
  background: linear-gradient(135deg, #14b8a6, #06b6d4);
  transition: all 0.3s ease;
  display: inline-block;
  text-decoration: none;
  border-radius: 1rem;
  padding: 1rem 2rem;
  font-weight: 600;
  color: white;
}

.btn-primary:hover {
  background: linear-gradient(135deg, #0f766e, #0891b2);
  transform: translateY(-2px);
}

.article-author-style {
  display: flex; align-items: center; gap: 0.375rem;
}

.no-shadow-article {
    box-shadow: none !important;
    border:none !important;
}

.article-card-image {
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
}

.clanek-karta {
  background: white;
  border-radius: 1.5rem;
  overflow: hidden;
  transition: all 0.3s;
  cursor: pointer;
  border: 1px solid #e5e7eb;
}

.clanek-karta-obsah {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
}

.clanek-karta:hover {
  transform: translateY(-8px);
}

/* Responsive Design */
@media (min-width: 768px) {
    .featured-content {
        grid-template-columns: 1fr 1fr;
    }
    
    .featured-image {
        height: auto;
    }
    
    .regular-articles {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (min-width: 1024px) {
    .regular-articles {
        grid-template-columns: repeat(3, 1fr);
    }
}
@media (max-width: 640px) {
    .articles-section {
        padding: 4rem 0;
    }
    
    
    .featured-text {
        padding: 1.5rem;
    }
    
    .featured-title {
        font-size: 1.5rem;
    }
    
    .featured-excerpt {
        font-size: 1rem;
    }
    .article-footer {
        flex-direction: column;
        align-items: flex-start;
    }
}

