/*
 Theme Name:   Bricks Child Theme
 Theme URI:    https://bricksbuilder.io/
 Description:  Use this child theme to extend Bricks.
 Author:       Bricks
 Author URI:   https://bricksbuilder.io/
 Template:     bricks
 Version:      1.1
 Text Domain:  bricks
*/

.data-list-wrapper {
  max-width: 960px;
  margin: 0 auto;
  padding: 2rem 1rem;
  font-family: 'Segoe UI', sans-serif;
}

.data-list-title {
  font-size: 32px;
  font-weight: bold;
  text-align: center;
  color: #2A32D0;
  margin-bottom: 0.25rem;
}

.data-list-subtitle {
  text-align: center;
  font-size: 16px;
  color: #555;
  margin-bottom: 2rem;
}

.data-list-letters {
  text-align: center;
  margin-bottom: 2rem;
}

.data-letter {
  display: inline-block;
  margin: 0 8px;
  font-size: 18px;
  font-weight: 500;
  color: #333;
  text-decoration: none;
  padding: 4px 8px;
  border-radius: 6px;
  transition: 0.2s;
}

.data-letter:hover {
  background: #e5e5ff;
  color: #2A32D0;
}

.data-letter.active {
  background: #2A32D0;
  color: #fff;
}

.data-list {
  display: grid;
  gap: 16px;
  padding-left: 0;
  list-style: none;
}

.data-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #f7f8fc;
  padding: 16px 20px;
  border: 1px solid #e0e0e0;
  border-radius: 12px;
  font-size: 18px;
  font-weight: 500;
  transition: all 0.25s ease;
  color: #222;
}

.data-item:hover {
  border-color: #2A32D0;
  background: #eef0ff;
  box-shadow: 0 2px 10px rgba(42, 50, 208, 0.08);
  cursor: pointer;
}

.data-link {
  text-decoration: none;
  color: inherit;
  display: flex;
  justify-content: space-between;
  width: 100%;
  align-items: center;
}

.data-item-arrow {
  font-size: 20px;
  color: #bbb;
  transition: transform 0.3s ease, color 0.3s ease;
}

.data-item:hover .data-item-arrow {
  transform: translateX(4px);
  color: #2A32D0;
}

.data-item::after {
  content: '→';
  font-size: 20px;
  color: #bbb;
  margin-left: auto;
  transition: transform 0.3s ease, color 0.3s ease;
}

.data-item:hover::after {
  transform: translateX(4px);
  color: #2A32D0;
}
.alphabet-filter {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin: 20px 0 30px;
}

.alphabet-letter {
  display: inline-block;
  padding: 10px 16px;
  font-size: 18px;
  font-weight: 500;
  border-radius: 8px;
  background-color: #f3f4f6;
  color: #333;
  text-decoration: none;
  transition: all 0.25s ease-in-out;
  box-shadow: 0 1px 3px rgba(0,0,0,0.08);
}

.alphabet-letter:hover {
  background-color: #007bff;
  color: #fff;
  transform: translateY(-2px);
}

