/*body {
  background: #fff;
  color: #222;
  font-family: 'Inter', 'Segoe UI', Arial, sans-serif;
  margin: 0;
  padding: 0;
  line-height: 1.7;
  font-size: 18px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

h1, h2, h3 {
  font-family: inherit;
  font-weight: 700;
  margin-top: 2em;
  margin-bottom: 0.5em;
  color: #111;
  line-height: 1.2;
}

h1 {
  font-size: 2.2em;
  margin-top: 1.5em;
}

h2 {
  font-size: 1.4em;
  margin-top: 2em;
}

h3 {
  font-size: 1.15em;
  margin-top: 1.5em;
}

img {
  max-width: 100%;
  display: block;
  margin: 2em 0;
  border-radius: 8px;
}

p {
  margin: 1em 0;
}

ul, ol {
  margin: 1em 0 1em 2em;
}

a {
  color: #0070f3;
  text-decoration: none;
  transition: color 0.2s;
}

a:hover {
  text-decoration: underline;
  color: #0056b3;
}

section {
  margin-bottom: 2.5em;
}

@media (max-width: 800px) {
  body {
    font-size: 16px;
    padding: 1em;
    max-width: 100%;
  }
  h1 {
    font-size: 1.6em;
  }
}
*/

/* ...existing code... */

.profile-header {
  display: flex;
  align-items: center;
  gap: 1.5em;
  margin-top: 2.5em;
  margin-bottom: 2.5em;
}

.profile-photo {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #eee;
}

.profile-name {
  margin: 0 0 0.2em 0;
  font-size: 1.7em;
  font-weight: 700;
}

.profile-desc {
  margin: 0 0 0.7em 0;
  color: #666;
  font-size: 1.1em;
}

.profile-links a {
  margin-right: 0.7em;
  display: inline-block;
  vertical-align: middle;
}
.profile-links img {
  width: 24px;
  height: 24px;
  opacity: 0.8;
  transition: opacity 0.2s;
}
.profile-links img:hover {
  opacity: 1;
}

.segmented-control {
  display: flex;
  gap: 0.5em;
  margin-bottom: 2em;
  background: #f5f5f7;
  border-radius: 8px;
  padding: 0.3em;
  width: fit-content;
}

.segmented-control .tab {
  background: none;
  border: none;
  padding: 0.6em 1.5em;
  font-size: 1em;
  border-radius: 6px;
  cursor: pointer;
  color: #222;
  font-weight: 500;
  transition: background 0.2s, color 0.2s;
}
.segmented-control .tab.active {
  background: #fff;
  color: #0070f3;
  box-shadow: 0 1px 4px rgba(0,0,0,0.03);
}

.tab-content {
  display: none;
}
.tab-content.active {
  display: block;
}

.post-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.post-item {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  border-bottom: 1px solid #eee;
  padding: 2em 0;
  gap: 1.5em;
}
.post-item:last-child {
  border-bottom: none;
}
.post-info {
  flex: 1 1 0;
}
.post-title {
  margin: 0 0 0.2em 0;
  font-size: 1.2em;
  font-weight: 700;
}
.post-desc {
  margin: 0 0 0.8em 0;
  color: #444;
}
.post-meta {
  font-size: 0.95em;
  color: #888;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}
.post-thumb {
  width: 96px;
  height: 96px;
  object-fit: cover;
  border-radius: 8px;
  background: #f5f5f7;
  flex-shrink: 0;
}

@media (max-width: 600px) {
  .profile-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 1em;
  }
  .post-item {
    flex-direction: column;
    gap: 1em;
  }
  .post-thumb {
    width: 100%;
    height: 140px;
  }
}

/* ...existing code... */

/* ...existing code... */

body {
  font-family: 'Bricolage Grotesque', 'Inter', 'Segoe UI', Arial, sans-serif;
  background: #fff;
  color: #222;
}

.container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 32px;
}

/* Profile photo: bigger, rectangular, border-radius 8px */
.profile-photo {
  width: 180px;                                                     
  height: auto;
  border-radius: 8px;
  object-fit: cover;
  border: 2px solid #eee;
}

/* Thumbnails 3x bigger */
.post-thumb {
  width: 288px;
  height: 288px;
  object-fit: cover;
  border-radius: 8px;
  background: #f5f5f7;
  flex-shrink: 0;
}

.rect-thumb {
  width: 288px;
  height: 180px;
  object-fit: cover;
  border-radius: 8px;
}

.center-thumb {
  margin-left: auto;
  margin-right: auto;
  display: block;
}


/* --- Prompts Tab Styles --- */
.prompt-tile {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
  padding: 2em 2em 1.5em 2em;
  margin-top: 1em;
  margin-bottom: 2em;
  max-width: 700px;
}

.prompt-header {
  display: flex;
  align-items: center;
  gap: 1em;
  margin-bottom: 1em;
}

.prompt-tag {
  background: #e0e7ff;
  color: #3730a3;
  font-size: 0.95em;
  font-weight: 600;
  border-radius: 6px;
  padding: 0.3em 0.9em;
  letter-spacing: 0.03em;
  margin-right: 0.5em;
}

.prompt-title {
  font-size: 1.2em;
  font-weight: 700;
  margin: 0;
}

.prompt-desc-input {
  width: 100%;
  border: 1px solid #e5e7eb;
  border-radius: 6px;
  padding: 0.8em 1em;
  font-size: 1em;
  margin-bottom: 1.2em;
  resize: vertical;
  background: #f8fafc;
  color: #222;
  font-family: inherit;
  min-height: 60px;
}

.prompt-box {
  background: #f5f5f7;
  border-radius: 8px;
  padding: 1.2em 1em 1em 1em;
  margin-bottom: 1.2em;
  position: relative;
}

.prompt-box p {
  margin: 0 0 0.7em 0;
  color: #222;
  font-size: 1em;
  line-height: 1.6;
}

.prompt-actions {
  display: flex;
  gap: 0.7em;
  position: absolute;
  top: 1em;
  right: 1em;
}

.icon-btn {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.2em;
  border-radius: 4px;
  transition: background 0.15s;
  display: inline-flex;
  align-items: center;
}

.icon-btn:hover {
  background: #e0e7ff;
}

.icon-btn img {
  width: 20px;
  height: 20px;
  display: block;
}

.prompt-images {
  display: flex;
  gap: 1em;
  margin-top: 1.2em;
}

.prompt-img {
  width: 120px;
  height: 90px;
  object-fit: cover;
  border-radius: 8px;
  background: #e5e7eb;
  border: 1px solid #e5e7eb;
  display: block;
}