/**
 * PhotoCP フロントエンド CSS（フォーム部分）。
 *
 * BEM 命名規則: .photocp-form / .photocp-form__* / .photocp-form__*--*
 * モバイルファースト設計（スマホが主な投稿デバイス）。
 *
 * @package Photocp
 */

/* ============================================================
   フォームコンテナ
   ============================================================ */
.photocp-form {
	max-width: 480px;
	margin: 0 auto;
	padding: 20px 16px;
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
	line-height: 1.6;
	color: #333;
}

/* ============================================================
   ヘッダー（ブランド名 + タイトル）
   ============================================================ */
.photocp-form__brand {
	text-align: center;
	font-size: 0.8rem;
	letter-spacing: 0.15em;
	color: #888;
	margin: 0 0 4px;
}

.photocp-form__title {
	text-align: center;
	font-size: 1.3rem;
	font-weight: 700;
	margin: 1em 0 1em !important;
	color: #222;
}

/* ============================================================
   ゲル番号表示
   ============================================================ */
.photocp-form__ger {
	display: flex;
	justify-content: space-between;
	align-items: center;
	background: #f0f7ff;
	border: 1px solid #c8ddf0;
	border-radius: 8px;
	padding: 10px 16px;
	margin-bottom: 20px;
	font-size: 0.95rem;
}

.photocp-form__ger-label {
	color: #4a7ab5;
	font-weight: 500;
}

.photocp-form__ger-value {
	color: #2a5a95;
	font-weight: 700;
}

/* ============================================================
   フォームフィールド共通
   ============================================================ */
.photocp-form__field {
	margin-bottom: 20px;
}

.photocp-form__label {
	display: block;
	font-size: 0.9rem;
	font-weight: 600;
	margin-bottom: 6px;
	color: #444;
}

.photocp-form__label-optional {
	font-weight: 400;
	font-size: 0.8rem;
	color: #888;
}

/* ============================================================
   写真選択エリア
   ============================================================ */
.photocp-form__photo-area {
	border: 2px dashed #ccc;
	border-radius: 8px;
	min-height: 180px;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	background: #fafafa;
	transition: border-color 0.2s, background-color 0.2s;
	overflow: hidden;
	position: relative;
}

.photocp-form__photo-area:hover,
.photocp-form__photo-area:focus-within {
	border-color: #888;
	background: #f5f5f5;
}

.photocp-form__photo-placeholder {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 6px;
	padding: 20px;
}

.photocp-form__photo-icon {
	font-size: 2rem;
	opacity: 0.5;
}

.photocp-form__photo-text {
	font-size: 0.95rem;
	color: #666;
}

.photocp-form__photo-formats {
	font-size: 0.8rem;
	color: #999;
}

/* ファイル input は非表示（写真選択エリア全体をクリックターゲットにする） */
.photocp-form__file-input {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

/* 写真プレビュー */
.photocp-form__photo-preview {
	width: 100%;
	padding: 8px;
}

.photocp-form__preview-img {
	display: block;
	width: 100%;
	height: auto;
	max-height: 300px;
	object-fit: contain;
	border-radius: 4px;
}

/* ファイルサイズエラー */
.photocp-form__file-error {
	color: #c0392b;
	font-size: 0.85rem;
	margin-top: 6px;
	padding: 6px 10px;
	background: #fef0ef;
	border: 1px solid #f5c6cb;
	border-radius: 4px;
}

/* ============================================================
   テキスト入力（ニックネーム）
   タッチターゲット: 最低 44px を確保
   ============================================================ */
.photocp-form__input,
.photocp-form__textarea {
	display: block;
	width: 100%;
	min-height: 44px;
	padding: 10px 12px;
	font-size: 1rem;
	border: 1px solid #ccc;
	border-radius: 8px;
	background: #fff;
	color: #333;
	box-sizing: border-box;
	transition: border-color 0.2s;
	-webkit-appearance: none;
	appearance: none;
}

.photocp-form__textarea {
	resize: vertical;
	font-family: inherit;
	line-height: 1.6;
}

.photocp-form__input:focus,
.photocp-form__textarea:focus {
	outline: none;
	border-color: #4a90d9;
	box-shadow: 0 0 0 3px rgba(74, 144, 217, 0.15);
}

.photocp-form__input::placeholder,
.photocp-form__textarea::placeholder {
	color: #aaa;
}

/* バリデーションエラー時のハイライト */
.photocp-form__input--error {
	border-color: #c0392b;
	box-shadow: 0 0 0 3px rgba(192, 57, 43, 0.12);
}

/* ============================================================
   同意チェックボックス
   タッチターゲット: ラベル全体をタップ可能にする
   ============================================================ */
.photocp-form__field--agree {
	padding: 12px;
	border: 1px solid #e0e0e0;
	border-radius: 8px;
	background: #fafafa;
}

.photocp-form__agree-label {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	cursor: pointer;
	min-height: 44px;
}

.photocp-form__checkbox {
	flex-shrink: 0;
	width: 20px;
	height: 20px;
	margin-top: 2px;
	accent-color: #4a90d9;
}

.photocp-form__agree-text {
	font-size: 0.85rem;
	line-height: 1.5;
	color: #555;
}

/* 同意チェック未チェックエラー */
.photocp-form__field--error {
	border-color: #c0392b;
	background: #fef0ef;
}

/* ============================================================
   ハニーポット（スパム対策: ボットだけが入力する隠しフィールド）
   ============================================================ */
.photocp-form__hp {
	display: none !important;
	visibility: hidden;
	position: absolute;
	left: -9999px;
}

/* ============================================================
   送信ボタン
   目立つ色・十分なサイズ・タッチターゲット 44px 以上
   ============================================================ */
.photocp-form__button {
	display: block;
	width: 100%;
	min-height: 50px;
	padding: 14px 20px;
	font-size: 1.05rem;
	font-weight: 700;
	text-align: center;
	text-decoration: none;
	border: none;
	border-radius: 8px;
	cursor: pointer;
	transition: background-color 0.2s, opacity 0.2s;
	box-sizing: border-box;
	-webkit-appearance: none;
	appearance: none;
}

.photocp-form__button--submit {
	background: #222;
	color: #fff;
}

.photocp-form__button--submit:hover {
	background: #444;
}

.photocp-form__button--submit:active {
	background: #111;
}

.photocp-form__button--submit:disabled {
	opacity: 0.6;
	cursor: not-allowed;
}

.photocp-form__button--again {
	background: #4a90d9;
	color: #fff;
	margin-top: 16px;
}

.photocp-form__button--again:hover {
	background: #3a7ac0;
}

/* ============================================================
   フッター注釈
   ============================================================ */
.photocp-form__footer-note {
	text-align: center;
	font-size: 0.8rem;
	color: #999;
	margin-top: 12px;
}

/* ============================================================
   成功メッセージ（投稿完了時）
   ============================================================ */
.photocp-form__success {
	background: #eafbe7;
	border: 1px solid #a3d99b;
	border-radius: 12px;
	padding: 30px 20px;
	text-align: center;
}

.photocp-form__success-text {
	font-size: 1.1rem;
	font-weight: 700;
	color: #2d6a2e;
	margin: 0 0 16px;
}

.photocp-form__success-id {
	font-size: 1.5rem;
	color: #2d6a2e;
	margin: 0 0 12px;
}

.photocp-form__success-note {
	font-size: 0.85rem;
	color: #555;
	margin: 0 0 8px;
	line-height: 1.5;
}

/* ============================================================
   エラーメッセージ（サーバーサイドバリデーション失敗時）
   ============================================================ */
.photocp-form__error {
	background: #fef0ef;
	border: 1px solid #f5c6cb;
	border-radius: 8px;
	padding: 12px 16px;
	margin-bottom: 20px;
}

.photocp-form__error-text {
	color: #c0392b;
	font-size: 0.9rem;
	margin: 0;
	line-height: 1.5;
}

/* ============================================================
   レスポンシブ: タブレット以上（768px〜）
   ============================================================ */
@media (min-width: 768px) {
	.photocp-form {
		padding: 30px 20px;
	}

	.photocp-form__title {
		font-size: 1.5rem;
	}

	.photocp-form__photo-area {
		min-height: 220px;
	}

	.photocp-form__success-id {
		font-size: 1.8rem;
	}
}

/* ============================================================
   ギャラリーコンテナ
   ============================================================ */
.photocp-gallery {
	max-width: 960px;
	margin: 0 auto;
	padding: 20px 16px;
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
	line-height: 1.6;
	color: #333;
}

/* ============================================================
   ギャラリーヘッダー（ブランド名 + タイトル + サブテキスト）
   ============================================================ */
.photocp-gallery__brand {
	text-align: center;
	font-size: 0.8rem;
	letter-spacing: 0.15em;
	color: #888;
	margin: 0 0 4px;
}

.photocp-gallery__title {
	text-align: center;
	font-size: 1.3rem;
	font-weight: 700;
	margin: 1em 0 1em !important;
	color: #222;
}

.photocp-gallery__subtitle {
	text-align: center;
	font-size: 0.85rem;
	color: #888;
	margin: 0 0 24px;
}

/* ============================================================
   写真グリッド
   デスクトップ: 4カラム、スマホ（768px以下）: 2カラム
   ============================================================ */
.photocp-gallery__grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 8px;
}

/* ============================================================
   各アイテム（写真カード）
   position: relative はバッジ（グッドマーク）配置用
   ============================================================ */
.photocp-gallery__item {
	position: relative;
	overflow: hidden;
	border-radius: 6px;
	background: #f5f5f5;
}

/* ============================================================
   サムネイル画像
   アスペクト比 1:1 で object-fit: cover により中央トリミング
   ============================================================ */
.photocp-gallery__image {
	display: block;
	width: 100%;
	aspect-ratio: 1 / 1;
	object-fit: cover;
}

/* ============================================================
   グッドマーク（「今日の1枚」選定バッジ）
   右上に丸いバッジで表示する
   ============================================================ */
.photocp-gallery__badge {
	position: absolute;
	top: 6px;
	right: 6px;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 32px;
	height: 32px;
	background: rgba(255, 255, 255, 0.9);
	border-radius: 50%;
	font-size: 1rem;
	line-height: 1;
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.15);
	z-index: 1;
}

/* ============================================================
   キャプション（投稿番号 or 運営提供ラベル + ニックネーム）
   ============================================================ */
.photocp-gallery__caption {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 6px 8px;
	font-size: 0.8rem;
	color: #555;
	background: #fff;
}

.photocp-gallery__label {
	font-weight: 600;
	color: #444;
}

/* 「運営提供」ラベル: グレーの小さいテキスト */
.photocp-gallery__label--stock {
	font-weight: 400;
	font-size: 0.75rem;
	color: #999;
}

.photocp-gallery__nickname {
	color: #666;
	font-size: 0.8rem;
}

/* ============================================================
   「もっと見る」ボタン
   中央寄せ・十分なパディングで押しやすく
   ============================================================ */
.photocp-gallery__load-more {
	text-align: center;
	margin-top: 24px;
}

.photocp-gallery__load-more-btn {
	display: inline-block;
	min-height: 48px;
	padding: 12px 48px;
	font-size: 1rem;
	font-weight: 600;
	color: #fff;
	background: #222;
	border: none;
	border-radius: 8px;
	cursor: pointer;
	transition: background-color 0.2s;
	-webkit-appearance: none;
	appearance: none;
}

.photocp-gallery__load-more-btn:hover {
	background: #444;
}

.photocp-gallery__load-more-btn:active {
	background: #111;
}

.photocp-gallery__load-more-btn:disabled {
	opacity: 0.6;
	cursor: not-allowed;
}

/* ============================================================
   ページネーション（JS無効時のフォールバック）
   ============================================================ */
.photocp-gallery__pagination {
	text-align: center;
	margin-top: 24px;
	font-size: 0.9rem;
}

.photocp-gallery__pagination a,
.photocp-gallery__pagination span {
	display: inline-block;
	min-width: 36px;
	min-height: 36px;
	line-height: 36px;
	padding: 0 8px;
	margin: 0 2px;
	text-decoration: none;
	border-radius: 4px;
	color: #444;
}

.photocp-gallery__pagination a:hover {
	background: #f0f0f0;
	color: #222;
}

/* 現在ページのハイライト */
.photocp-gallery__pagination .current {
	background: #222;
	color: #fff;
	font-weight: 700;
}

/* ============================================================
   空メッセージ（投稿がまだない場合）
   ============================================================ */
.photocp-gallery__empty {
	text-align: center;
	padding: 60px 20px;
	font-size: 1rem;
	color: #999;
}

/* ============================================================
   レスポンシブ: タブレット以上（768px〜）
   グリッドを 4カラムに変更し、余白を広げる
   ============================================================ */
@media (min-width: 768px) {
	.photocp-gallery {
		padding: 30px 20px;
	}

	.photocp-gallery__title {
		font-size: 1.5rem;
	}

	.photocp-gallery__grid {
		grid-template-columns: repeat(4, 1fr);
		gap: 12px;
	}

	.photocp-gallery__badge {
		width: 36px;
		height: 36px;
		font-size: 1.1rem;
		top: 8px;
		right: 8px;
	}

	.photocp-gallery__caption {
		padding: 8px 10px;
		font-size: 0.85rem;
	}
}

/* ============================================================
   「今日の1枚」コンテナ
   ============================================================ */
.photocp-daily-pick {
	max-width: 480px;
	margin: 0 auto;
	padding: 20px 16px;
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
	line-height: 1.6;
	color: #333;
}

/* ============================================================
   ヘッダー（ブランド名 + タイトル + 日付）
   ============================================================ */
.photocp-daily-pick__brand {
	text-align: center;
	font-size: 0.8rem;
	letter-spacing: 0.15em;
	color: #888;
	margin: 0 0 4px;
}

.photocp-daily-pick__title {
	text-align: center;
	font-size: 1.3rem;
	font-weight: 700;
	margin: 0 0 4px;
	color: #222;
}

.photocp-daily-pick__date {
	text-align: center;
	font-size: 0.85rem;
	color: #888;
	margin: 0 0 24px;
}

.photocp-daily-pick__date-mn {
	display: block;
	font-size: 0.8rem;
	color: #aaa;
	margin-top: 2px;
}

/* ============================================================
   メイン画像カード
   角丸 + 影でカード風に見せる
   ============================================================ */
.photocp-daily-pick__main {
	border-radius: 12px;
	overflow: hidden;
	background: #f5f5f5;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
	margin-bottom: 32px;
}

.photocp-daily-pick__image {
	display: block;
	width: 100%;
	height: auto;
	aspect-ratio: 4 / 3;
	object-fit: cover;
}

/* ============================================================
   投稿者情報バー（投稿番号 + ニックネーム + 当選バッジ）
   ============================================================ */
.photocp-daily-pick__info {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 12px 16px;
	background: #fff;
}

.photocp-daily-pick__info-left {
	display: flex;
	flex-direction: column;
	gap: 2px;
}

.photocp-daily-pick__number {
	font-size: 0.8rem;
	color: #888;
}

.photocp-daily-pick__nickname {
	font-size: 0.95rem;
	font-weight: 600;
	color: #333;
}

/* 「本日の当選」バッジ: 薄い青背景 + 角丸 */
.photocp-daily-pick__badge {
	display: inline-block;
	font-size: 0.75rem;
	font-weight: 600;
	color: #4a7ab5;
	background: #e8f0fc;
	border: 1px solid #c8ddf0;
	border-radius: 4px;
	padding: 4px 10px;
	white-space: nowrap;
}

/* ============================================================
   空表示（本日未選定時）
   ============================================================ */
.photocp-daily-pick__empty {
	text-align: center;
	padding: 60px 20px;
	margin-bottom: 32px;
}

.photocp-daily-pick__empty-text {
	font-size: 1rem;
	color: #999;
	margin: 0;
}

/* ============================================================
   今日の1枚 コンパクト版（トップページ埋め込み用）
   [photocp_daily_pick compact="1"]
   ============================================================ */
.photocp-compact {
	max-width: 400px;
	margin: 0 auto 24px;
	text-align: center;
}

.photocp-compact__title {
	font-size: 1.1rem;
	font-weight: 700;
	color: #333;
	margin: 0 0 12px;
}

.photocp-compact__card {
	border-radius: 3px;
	background: #fff;
	padding: 12px 12px 0;
	box-shadow:
		0 2px 6px rgba(0, 0, 0, 0.12),
		0 6px 20px rgba(0, 0, 0, 0.08);
}

.photocp-compact__image {
	width: 100%;
	height: auto;
	display: block;
	aspect-ratio: 4 / 3;
	object-fit: cover;
}

.photocp-compact__info {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 14px 4px;
	gap: 8px;
}

.photocp-compact__badge {
	display: inline-block;
	font-size: 0.7rem;
	font-weight: 600;
	color: #4a7ab5;
	background: #e8f0fc;
	border: 1px solid #c8ddf0;
	border-radius: 4px;
	padding: 3px 8px;
	white-space: nowrap;
}

.photocp-compact__nickname {
	font-size: 0.85rem;
	color: #555;
}

.photocp-compact__empty {
	font-size: 0.9rem;
	color: #999;
	padding: 24px 0;
	margin: 0;
}

.photocp-compact__link {
	font-size: 0.85rem;
	color: #4a7ab5;
	text-decoration: none;
	white-space: nowrap;
}

.photocp-compact__link:hover {
	text-decoration: underline;
}

/* ============================================================
   過去の当選発表セクション
   ============================================================ */
.photocp-daily-pick__past-title {
	font-size: 1rem;
	font-weight: 700;
	color: #333;
	margin: 0 0 12px;
}

.photocp-daily-pick__past-list {
	display: flex;
	flex-direction: column;
	gap: 0;
	margin-bottom: 24px;
}

/* 各過去エントリ: サムネイル + 情報 + 当選ラベルを横並び */
.photocp-daily-pick__past-item {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 12px 0;
	border-bottom: 1px solid #eee;
}

.photocp-daily-pick__past-item:last-child {
	border-bottom: none;
}

/* サムネイル: 48x48 の角丸正方形 */
.photocp-daily-pick__past-thumb {
	width: 48px;
	height: 48px;
	border-radius: 8px;
	object-fit: cover;
	flex-shrink: 0;
}

.photocp-daily-pick__past-info {
	flex: 1;
	display: flex;
	flex-direction: column;
	gap: 2px;
	min-width: 0;
}

.photocp-daily-pick__past-date {
	font-size: 0.75rem;
	color: #999;
}

.photocp-daily-pick__past-detail {
	font-size: 0.85rem;
	font-weight: 600;
	color: #333;
}

/* 「当選」ラベル: 小さめテキスト */
.photocp-daily-pick__past-label {
	font-size: 0.75rem;
	font-weight: 600;
	color: #c0392b;
	flex-shrink: 0;
}

/* ============================================================
   フッター（案内メッセージ）
   ============================================================ */
.photocp-daily-pick__footer {
	background: #fdf3e7;
	border-radius: 8px;
	padding: 12px 16px;
	margin-bottom: 16px;
}

.photocp-daily-pick__footer-text {
	font-size: 0.8rem;
	color: #b8860b;
	margin: 0;
	line-height: 1.5;
	text-align: center;
}

.photocp-daily-pick__footer-mn {
	display: block;
	font-size: 0.75rem;
	color: #b8860b;
	margin-top: 6px;
	line-height: 1.6;
	text-align: center;
}

/* ============================================================
   ギャラリーへのリンク
   下矢印アイコン付きのテキストリンク
   ============================================================ */
.photocp-daily-pick__gallery-link {
	text-align: center;
	margin-top: 8px;
}

.photocp-daily-pick__gallery-link-btn {
	display: inline-block;
	font-size: 0.9rem;
	color: #4a90d9;
	text-decoration: none;
	padding: 8px 16px;
}

.photocp-daily-pick__gallery-link-btn:hover {
	text-decoration: underline;
}

/* ============================================================
   レスポンシブ: タブレット以上（768px〜）
   ============================================================ */
@media (min-width: 768px) {
	.photocp-daily-pick {
		max-width: 600px;
		padding: 30px 20px;
	}

	.photocp-daily-pick__title {
		font-size: 1.5rem;
	}

	.photocp-daily-pick__past-thumb {
		width: 56px;
		height: 56px;
	}
}

/* ============================================================
   投稿履歴セクション（「あなたの投稿履歴」）
   JS が localStorage からデータを見つけた場合のみ display を解除する
   ============================================================ */
.photocp-my-posts {
	max-width: 480px;
	margin: 0 auto 24px;
	padding: 0 16px;
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
	line-height: 1.6;
	color: #333;
}

.photocp-my-posts__title {
	font-size: 1rem;
	font-weight: 700;
	color: #333;
	margin: 0 0 12px;
}

.photocp-my-posts__list {
	display: flex;
	flex-direction: column;
	gap: 8px;
}

/* ============================================================
   投稿カード（共通）
   ============================================================ */
.photocp-my-posts__item {
	border: 1px solid #e0e0e0;
	border-radius: 8px;
	padding: 12px;
	background: #fff;
}

/* 当選カード: 金色ボーダー + 薄黄色背景 */
.photocp-my-posts__item--selected {
	border-color: #d4a017;
	background: #fefce8;
}

/* 選外カード: グレーアウト */
.photocp-my-posts__item--not-selected {
	opacity: 0.7;
}

/* 選定中カード: 通常表示（追加スタイルなし） */

/* ============================================================
   カードヘッダー（投稿番号 + バッジ）
   ============================================================ */
.photocp-my-posts__item-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 4px;
}

.photocp-my-posts__number {
	font-size: 0.85rem;
	font-weight: 600;
	color: #444;
}

/* ============================================================
   ステータスバッジ
   ============================================================ */
.photocp-my-posts__badge {
	display: inline-block;
	font-size: 0.75rem;
	font-weight: 600;
	border-radius: 4px;
	padding: 2px 8px;
	white-space: nowrap;
}

/* 当選バッジ: 金色系 */
.photocp-my-posts__badge--selected {
	color: #92400e;
	background: #fef3c7;
	border: 1px solid #f59e0b;
}

/* 選外バッジ: グレー */
.photocp-my-posts__badge--not-selected {
	color: #6b7280;
	background: #f3f4f6;
	border: 1px solid #d1d5db;
}

/* 選定中バッジ: 青系（既存の daily-pick バッジと統一感） */
.photocp-my-posts__badge--pending {
	color: #4a7ab5;
	background: #e8f0fc;
	border: 1px solid #c8ddf0;
}

/* ============================================================
   カードメタ情報（ニックネーム + 日時）
   ============================================================ */
.photocp-my-posts__item-meta {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.photocp-my-posts__nickname {
	font-size: 0.85rem;
	color: #555;
}

.photocp-my-posts__date {
	font-size: 0.75rem;
	color: #999;
}

/* ============================================================
   ガイド案内文（当選時のみ表示）
   ============================================================ */
.photocp-my-posts__guide-note {
	margin: 8px 0 0;
	padding: 8px 12px;
	font-size: 0.8rem;
	color: #b8860b;
	background: #fdf3e7;
	border-radius: 6px;
	line-height: 1.5;
	text-align: center;
}

/* ============================================================
   レスポンシブ: タブレット以上（768px〜）
   ギャラリーページでは max-width を広げる
   ============================================================ */
@media (min-width: 768px) {
	.photocp-my-posts {
		max-width: 600px;
		padding: 0 20px;
		margin-bottom: 32px;
	}
}
